top of page

Script to compare data between two tables

-- Show data in table dbtest02 that do not exists in dbtest01


select * from dbtest02.dbo.article

except

select * from dbtest01.dbo.article

10 views0 comments

Recent Posts

See All

SQL Server Profiler Trace

--Import multiple trace file in sql Table. --All the rollover files will be automatically imported --provide number tracefile to capture...

Comments


bottom of page