Turnover
State of Oklahoma
@usgov.state_of_oklahoma_turnover
State of Oklahoma
@usgov.state_of_oklahoma_turnover
This dataset contains resources that present State of Oklahoma workforce data through the current fiscal year. The data can be used for workforce planning purposes.
Organization: State of Oklahoma
Last updated: 2021-08-07T14:59:48.393292
Tags: retirement, turnover, workforce, workforce-planning
CREATE TABLE fy_2018_generational_turnover (
"generation" VARCHAR,
"starting_count" BIGINT,
"turnover_count" BIGINT,
"n__turnover" VARCHAR -- % Turnover
);CREATE TABLE fy_2018_turnover_by_generation (
"generation" VARCHAR,
"starting_count" BIGINT,
"turnover_count" BIGINT,
"n__statewide_turnover" VARCHAR -- % Statewide Turnover
);CREATE TABLE retirement_eligibility_and_age_by_agency_fy_2018 (
"agency_number" BIGINT,
"agency" VARCHAR,
"end_fy_count" BIGINT,
"avg_years_of_service" VARCHAR,
"avg_age" VARCHAR,
"number_eligible_to_retire" BIGINT,
"percent_eligible_to_retire" VARCHAR,
"number_eligible_to_retire_in_5_years" BIGINT,
"percent_eligible_to_retire_in_5_years" VARCHAR,
"avg_years_to_retirement_eligibility" VARCHAR
);CREATE TABLE retirements_eligible_vs_actual (
"fiscal_year" BIGINT,
"number_eligible_to_retire" BIGINT,
"n__workforce_eligible_to_retire" VARCHAR -- % Workforce Eligible To Retire,
"number_retirements" BIGINT,
"n__of_total_workforce_retired" VARCHAR -- % Of Total Workforce Retired,
"n__retired_of_eligible" VARCHAR -- % Retired Of Eligible
);CREATE TABLE turnover_by_reasons_trends (
"fiscal_year" BIGINT,
"resignation" BIGINT,
"retirement" BIGINT,
"discharge" BIGINT,
"death" BIGINT,
"other" DOUBLE,
"reduction_in_force" DOUBLE,
"voluntary_buyout" DOUBLE,
"voluntary_buyout_retirement" DOUBLE,
"voluntary" VARCHAR -- Voluntary %,
"involuntary" VARCHAR -- Involuntary %,
"total_turnover" VARCHAR
);Anyone who has the link will be able to view this.