Python Forum
Comparing the count of rows from the tables that are present in two different databas
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Comparing the count of rows from the tables that are present in two different databas
#1
Say for example I have a database named A and B with same table name and with different set of records. I want to compare the count of the table 1 that is present in Database A and B.

Database A has 190 tables and Database B has 190 tables with same table names. But table 1 has 40 records in Database A and table 1 in Database 2 has 30 records.

As of now I am able to do that in SQL server with this query. select (select count() from A.table1) as Count1, (select count() from B.table1) as Count2

But I am trying to do the same in Python. How can I connect to the two databases with the same conn object and use it to count the table records in different databases. I would also thankful if someone can help me to automate these for all the tables in both the databases.Thank you.
Reply


Messages In This Thread
Comparing the count of rows from the tables that are present in two different databas - by krt5 - Feb-13-2019, 10:03 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Row Count and coloumn count Yegor123 4 1,468 Oct-18-2022, 03:52 AM
Last Post: Yegor123
  Check if a value is present in each group Menthix 8 3,047 May-16-2022, 12:25 PM
Last Post: Menthix
  Anaconda pip install mpyc Error pip-script.py is not present Anldra12 2 8,090 Dec-13-2021, 06:59 PM
Last Post: Anldra12
  The code I have written removes the desired number of rows, but wrong rows Jdesi1983 0 1,691 Dec-08-2021, 04:42 AM
Last Post: Jdesi1983
  Slittping table into Multiple tables by rows drunkenneo 1 2,175 Oct-06-2021, 03:17 PM
Last Post: snippsat
  Pandas DataFrame combine rows by column value, where Date Rows are NULL rhat398 0 2,199 May-04-2021, 10:51 PM
Last Post: rhat398
  Indexing [::-1] to Reverse ALL 2D Array Rows, ALL 3D, 4D Array Columns & Rows Python Jeremy7 8 7,525 Mar-02-2021, 01:54 AM
Last Post: Jeremy7
  len(row) does not count rows correctly quest_ 3 2,348 Jan-23-2021, 10:38 AM
Last Post: quest_
  No Scripts File present after python installation ag2207 5 5,135 Jul-30-2020, 11:11 AM
Last Post: buran
  Excel tables and move rows jdos 6 4,734 Jul-02-2020, 05:52 AM
Last Post: jdos

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020