Skip to content

Instantly share code, notes, and snippets.

View wforbes's full-sized avatar
🏠
Working from home

Will Forbes wforbes

🏠
Working from home
View GitHub Profile
@wforbes
wforbes / postgres_job_scheduling_article.md
Last active July 2, 2022 20:38
'An Overview of Job Scheduling Tools for PostgreSQL' by Hugo Dias

Hugo Dias: An Overview of Job Scheduling Tools for PostgreSQL

For use with the WGU D191 'Advanced Data Management' Course (https://wgu.edu)

Originally available from: An Overview of Job Scheduling Tools for PostgreSQL

Recovered from: Planet PostgreSQL rssing page

Unlike other database management systems that have their own built-in scheduler (like Oracle, MSSQL or MySQL), PostgreSQL still doesn’t have this kind of feature.

In order to provide scheduling functionality in PostgreSQL you will need to use an external tool like...

@wforbes
wforbes / UUID.php
Created June 21, 2020 18:50 — forked from nickl-/UUID.php
Pure PHP UUID generator
<?php
/**
* UUID class
*
* The following class generates VALID RFC 4122 COMPLIANT
* Universally Unique IDentifiers (UUID) version 3, 4 and 5.
*
* UUIDs generated validates using OSSP UUID Tool, and output
* for named-based UUIDs are exactly the same. This is a pure
* PHP implementation.