powershell MS SQL Powershell使用TSQL创建表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell MS SQL Powershell使用TSQL创建表相关的知识,希望对你有一定的参考价值。
[string] $userName = "<user-name>"
[string] $pwd = '<pwd>'
[string] $connStr = "Server=localhost;Database=master;
User ID=$userName;Password=$pwd;
Encrypt=false;TrustServerCertificate=False;
Connection Timeout=30;"
$connection = New-Object System.Data.SqlClient.SqlConnection
$connection.ConnectionString = $connStr
$connection.Open();
$cmd = $connection.CreateCommand()
$cmd.CommandText =
"
CREATE TABLE tbl1
(col1 INT,
col2 VARCHAR(20)
)
"
$reader = $cmd.ExecuteReader()
$reader.HasRows
$cmd.Dispose()
$connection.Close()
以上是关于powershell MS SQL Powershell使用TSQL创建表的主要内容,如果未能解决你的问题,请参考以下文章
powershell MS SQL Powershell使用SQLPS创建视图
powershell MS SQL Powershell使用TSQL创建表
powershell MS SQL Powershell使用SQLPS创建表
powershell MS SQL Powershell使用SQLPS创建数据库
powershell MS SQL Powershell使用本机TSQL创建数据库
MS SQL/Powershell:如何杀死可用性组中辅助节点上的后台进程