Script to compare data between two tablesKunal RanpuraJul 28, 20191 min read-- Show data in table dbtest02 that do not exists in dbtest01select * from dbtest02.dbo.articleexceptselect * from dbtest01.dbo.article
SQL Server Profiler Trace--Import multiple trace file in sql Table. --All the rollover files will be automatically imported --provide number tracefile to capture...
Find All Primary Key in SQL Serverselect schema_name(tab.schema_id) as [schema_name], pk.[name] as pk_name, substring(column_names, 1, len(column_names)-1) as [columns],...
SQL Server find Database User Permission--Execute the following script against the User Database where you need to find DB User permission. DECLARE @sql VARCHAR(2048) ,@sort INT...
Comentários