how to find data from all databases in sql server with query code example
Example 1: show databases in sql server
SELECT * FROM SYS.DATABASES
Example 2: sql query to list all tables in a database sql server
BY LOVE SINGH on May 19 2020
SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_CATALOG='YOUR_Database_name'