Use this page to create or manage schedules for a SQL Server Agent job that starts an incremental table population for the full-text index populations. For more info, see Populate Full-Text Indexes.
await db.schema .createIndex('full_name') .ifNotExists() .on('tbl_user') .columns(['first_name', 'middle_name', 'last_name']) .$call((builder) => { const rawSql ...