SQL Server Agent başlatmaAdminEylül 9, 2019To see the state of “Agent XPs” option, run the folowing code: EXEC sp_configure 'show advanced options', 1 GO RECONFIGURE ... Read More
tablolardaki sütunları listeleyen sorguAdminKasım 13, 2018List table columns in database select schema_name(tab.schema_id) as schema_name, tab.name as table_name, col.column_id, col.name as column_name, t.name as data_type, col.max_length, ... Read More