Skip to content

Instantly share code, notes, and snippets.

@W3BGUY
Last active March 31, 2021 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save W3BGUY/207bd891211e377c81d8160b396d73a0 to your computer and use it in GitHub Desktop.
Save W3BGUY/207bd891211e377c81d8160b396d73a0 to your computer and use it in GitHub Desktop.
Jitterbit PostgreSQL Info
# Connect to PostgreSQL from Linux
/opt/jitterbit/pgsql/bin/psql -d postgres -U jitterbit -p 46914
# List databases
\l
# list tables
\dt
# Connect to TranDb database
\c TranDb
# Check Schedules
SELECT * FROM schedulestab;
# Check operations running specific schedule (use schedule_id column value from above results).
SELECT * FROM operationstab WHERE schedule_id=350822;
# Check for leftover operations waiting to run
SELECT * FROM incomingmsgtab;
# Clear out operations waitign to process
TRUNCATE table incomingmsgtab;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment