Page 1 of 1

Semlay Readiness Check — Intake

Get your free readiness report

Upload your database schema and tell us about your business. We'll email your readiness score, verdict, and setup recommendation in a few minutes.
No sales call required · No credit card · Schema only

Full name

Work email

We'll send your readiness report to this address.

Your role

Primary system of record

Where your operational and financial data lives today.

Your top 3 business questions

What would you ask if you had reliable answers from your data? One question per line. We reference these on your report — we don't run them during the free check.

Company size

Who manages your database?

Schema export

Upload table and column definitions from your Postgres database, no row data, no live connection to Semlay.
Export your Postgres schema — no live connection, no row data.
1. In pgAdmin or DBeaver, run each query below and Save/Export results as CSV:
• semlay_schema_columns.csv (tables + columns)
• semlay_schema_keys.csv (keys + constraints)
2. Zip both files into one .zip and upload here.
Click to browse (drag-and-drop may not work). After uploading, scroll down to reach Submit.
SQL — query 1 (save as semlay_schema_columns.csv):
SELECT table_schema, table_name, column_name, data_type, is_nullable
FROM information_schema.columns
WHERE table_schema NOT IN ('pg_catalog', 'information_schema')
ORDER BY table_schema, table_name, ordinal_position;
SQL — query 2 (save as semlay_schema_keys.csv):
SELECT tc.table_schema, tc.table_name, tc.constraint_type, kcu.column_name,
ccu.table_schema AS foreign_table_schema,
ccu.table_name AS foreign_table_name,
ccu.column_name AS foreign_column_name
FROM information_schema.table_constraints tc
LEFT JOIN information_schema.key_column_usage kcu
ON tc.constraint_name = kcu.constraint_name AND tc.table_schema = kcu.table_schema
LEFT JOIN information_schema.constraint_column_usage ccu
ON tc.constraint_name = ccu.constraint_name
WHERE tc.table_schema NOT IN ('pg_catalog', 'information_schema');
Not on Postgres? Give this to whoever manages your database (or paste into your AI assistant with your DB type):
Export our database SCHEMA ONLY (no row data):
(1) all tables with schema/name, every column with data type and nullable flag; (
2) all primary keys, foreign keys, and unique constraints with from/to table+column. Output as two CSV files or one JSON file. Exclude system/catalog schemas. Do not include sample rows or PII.