Quickly check the consistency of SQL two-table data

Source: Internet
Author: User

1 former words

A new feature is implemented within the project: cloning a database.

2 goals

Cloning is not cloned with SQL Server, so after completion, you need to check the table of some data and the original table consistency. Some of the columns in some tables allow inconsistencies.

3 implementation

The two tables need to check the number of columns out, add each row checksum as the table data characteristics, contrast.

4 Code

DECLARE @col varchar (100) Define a column name that is not needed in order to exclude this column
Set @col = ' '
Select @[email protected]+ ', ' +name from syscolumns where id=object_id (' table ') and name<> ' Revision ' ORDER by colid
Set @col =stuff (@col, 1, 1, ")
EXEC (' Select sum (CAST (checksum (' [email protected]+ ') as bigint) as checksumvalue from table ')

Quickly check the consistency of SQL two-table data

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.