Forum Discussion

mikakoistinen's avatar
mikakoistinen
Contributor
7 years ago
Solved

The number of rows in the stored database table differs ....

Hi,

In my new test I receive random "The number of rows in the stored database table differs from the number of rows in the compared database object." error in my database checkpoint.

I would like to know what is the content of those extra rows.

Data is quite simple: two string columns,one is key and the other is data.

How can I view what are those extra rows?

Or should I just write my own compare? Or is there anyway to export database checkpoint ?

 

thanks

mika

 

 

 

  • I have been wordering this couple of hours now. But just after posting question I found solution

    for i:= 0 to DBTables.myDbstore.RowCount-1 do
    
        log.Message(dbtables.myDbstore.Values[i,0] +' '+dbtables.myDbstore.Values[i,1])

1 Reply

  • I have been wordering this couple of hours now. But just after posting question I found solution

    for i:= 0 to DBTables.myDbstore.RowCount-1 do
    
        log.Message(dbtables.myDbstore.Values[i,0] +' '+dbtables.myDbstore.Values[i,1])