Every action below is available as a verb in Cerebral OS — callable from a Cerebral, a Map, or the Runtime API. All executions are governed, audited, and dry-run safe.
Create Table
azure_sql:create_table
Create a new table in the database with the specified schema.
Write
Medium risk
Delete Record
azure_sql:delete_record
Delete records from the specified table. USE WITH EXTREME CAUTION!
Write
High risk
Drop Table
azure_sql:drop_table
Drop (delete) a table and ALL its data permanently.
Write
High risk
Execute Query
azure_sql:execute_query
Execute a SQL query against the Azure SQL database.
Write
Medium risk
Get Database Info
azure_sql:get_database_info
Get basic information about the connected Azure SQL database.
Read
Low risk
Get Table Schema
azure_sql:get_table_schema
Get the schema definition for a specific table including columns, data types, and constraints.
Read
Low risk
Insert Record
azure_sql:insert_record
Insert a new record into the specified table.
Write
Medium risk
List Tables
azure_sql:list_tables
List all tables in the database with basic metadata.
Read
Low risk
Select Records
azure_sql:select_records
Select records from the specified table with optional filtering, sorting, and pagination.
Write
Low risk
Update Record
azure_sql:update_record
Update existing records in the specified table based on WHERE conditions.
Write
Medium risk