Skip to content

Instantly share code, notes, and snippets.

@ggdio
Last active December 23, 2015 07:09
Show Gist options
  • Save ggdio/6599114 to your computer and use it in GitHub Desktop.
Save ggdio/6599114 to your computer and use it in GitHub Desktop.
SQLSERVER
------------
SELECT
TABLE_NAME
FROM
INFORMATION_SCHEMA.TABLES
WHERE
TABLE_TYPE = 'BASE TABLE' AND
TABLE_NAME LIKE '%TBL%';
ORACLE
------------
SELECT
TABLE_NAME
FROM
ALL_TABLES
WHERE
TABLE_NAME LIKE '%TBL%';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment