Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
ykumar03
Frequent Visitor

How to Automate comparison of result set of same Sql query running on different oracle environment .

For eg.I have below SQL query which needs to be run  2 times . First time in a test environment and the second time in the Production environment with different credentials.

 

Select name,location from EMP where empid in(101,102)

 

After running the query in Test and Prod Oracle environment.

1.I want to compare the query result from both environments. How many records match/mismatch

2.Empid in Where condition of SQL query should be parametrized. means empid in where conditions should not be hardcoded.At run time I can put any empid.

 

Is there a way in Power bi by which I can setup/save this configuration and just by one click I can run this?

@Anonymous

 

1 ACCEPTED SOLUTION
PaulDBrown
Community Champion
Community Champion

Not exactly sure what you mean "run this by just one click"

However...

If you import both sets of data, you can compare them using measures:

Common records = COUNTROWS(INTERSECT(Table 1, Table 2))

 

differing records table 1 = COUNTROWS(EXCEPT(Table 1, Table 2))

 

differing records table 2 = COUNTROWS(EXCEPT(Table 2, Table 1))





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

2 REPLIES 2
ykumar03
Frequent Visitor

Thank You

PaulDBrown
Community Champion
Community Champion

Not exactly sure what you mean "run this by just one click"

However...

If you import both sets of data, you can compare them using measures:

Common records = COUNTROWS(INTERSECT(Table 1, Table 2))

 

differing records table 1 = COUNTROWS(EXCEPT(Table 1, Table 2))

 

differing records table 2 = COUNTROWS(EXCEPT(Table 2, Table 1))





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.