Archives for: April 2009
SQL mapping
April 20th, 2009Use the following SQL queries to get information about a MSSQL database:
List of databases on the server
USE MASTER
SELECT dbid, name
FROM SYSDATABASES
List all the tables in a database
USE
SELECT id, name… more »