Showing posts with label Count number of tables in a SQL Server database. Show all posts
Showing posts with label Count number of tables in a SQL Server database. Show all posts

15 September 2010

Count number of tables in a SQL Server database

Count number of tables in a SQL Server database

USE YOURDBNAME
SELECT COUNT(*) from information_schema.tables
WHERE table_type = 'base table'

Find number of letter occurence of all letter in c#

  Find number of letter occurence of all letter in c#  namespace ConsoleApp1 {     internal class Program     {         static void Main(st...