Skip to content

Instantly share code, notes, and snippets.

@ignas-sakalauskas
Created April 17, 2017 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ignas-sakalauskas/c5a3a76c73efcea7237e080eef53a25d to your computer and use it in GitHub Desktop.
Save ignas-sakalauskas/c5a3a76c73efcea7237e080eef53a25d to your computer and use it in GitHub Desktop.
Select all tables from database
USE [YourDBName]
SELECT * FROM sys.Tables
SELECT * FROM sysobjects WHERE xtype='u'
-- https://ignas.me/tech/select-all-tables-database/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment