drop and create SQL Server tables based on an array with table names by using PowerShell
# Add table names to the "$tables" array in the order they should be created. $tables = @( "dbo.Person", "dbo.Settings", "dbo.SmsStatus", "dbo.Sms" ) # Create a table if it does not exist. # It