Quantcast
Channel: PowerShell.com – PowerShell Scripts, Tips, Forums, and Resources
Viewing all articles
Browse latest Browse all 6937

Filtering the list of tables to script

$
0
0

Hi,

I have this script, that scripts all tables in a database into one file.  How can I change it so it scripts only tables, which match the masks of 'Table1%' or 'Table2%' into individual files named [tablename].sql?

 

Thanks

If (!(Test-Path A:)) {net use A: \\myserver\scripts}

$timestamp = Get-Date -Format yyyy-MM-dd

SL SQLSERVER:\SQL\"myserver\myinstance"\Databases\"MyDB"\Tables

$so = new-object Microsoft.SqlServer.Management.Smo.ScriptingOptions

$so.IncludeIfNotExists = 1

$so.DriPrimaryKey = 1                        

$so.DriForeignKeys = 0                      

$so.DriUniqueKeys = 1                      

$so.DriClustered = 1                          

$so.DriNonClustered = 1                   

$so.DriChecks = 1                            

$so.DriDefaults = 1                           

$so.Triggers = 1  

$so.FullTextIndexes = 1        

$so.ClusteredIndexes = 1

$so.NonClusteredIndexes = 1

 #remove the script if it exists                  

If (test-path "A:\Tables $timestamp.sql")

{

remove-item "A:\Tables $timestamp.sql"

}

dir | %{$_.Script($so) + " GO "  | Out-File "A:\Tables $timestamp.sql" -Append}

 


Viewing all articles
Browse latest Browse all 6937

Trending Articles