mssql-change-tracking
Version:
MS SQL server change tracking functions
11 lines (10 loc) • 395 B
TypeScript
import sql from "mssql";
import { ctDbStatus } from "./change-tracking-db-status";
declare type CtDbDisable = {
pool: sql.ConnectionPool;
dbName: string;
};
/** Disable change tracking in DB level */
export declare function ctDbDisable({ dbName, pool, }: CtDbDisable): ReturnType<typeof ctDbStatus>;
export declare function ctDbDisableQuery(dbName: string): string;
export {};