Working with the SQL Server command line (sqlcmd)

Introduction

Sqlcmd allows executing queries, T-SQL sentences and SQL Server scripts using the command line.

In the previous article How to work with the command line and Azure to automate tasks, we worked with the sqlcmd in Azure.

In this new chapter, we will show the following examples in a local SQL Server using sqlcmd:

  1. Working with sqlcmd interactive mode including how to
    1. connect to SQL Server
    2. check the current database
    3. list databases
    4. check if the SQL Server is case sensitive
    5. check the SQL Server edition
    6. check the SQL Server Authentication
    7. list the variables set
  2. Running sqlcmd in command mode including how to
    1. back up a database
    2. run a T-SQL script and receive the output in a file
    3. work with variables
    4. list the table names of a database
    5. list the column names of a database
    6. check all the commands
    7. exit if the command fails
    8. display error messages according to the error level
    9. accept user input
  3. Working in SSMS in sqlcmd mode including how to
    1. run sqlcmd in SSMS
    2. set the sqlcmd mode by default in SSMS
  4. Working with PowerShell including how to
    1. invoke sqlcmd using PowerShell
    2. run scripts in SQL PowerShell (check table fragmentation)
    3. output verbose results
  5. DAC
    1. How to work with a Dedicated Administrator Connection (DAC)
  6. When to use sqlcmd mode, interactive mode, DAC, SSMS, PowerShell

Requirements

  1. Sqlcmd installed in a Windows Machine (Linux supports sqlcmd, but it is slightly different).

Getting Started

  1. Working with sqlcmd interactive mode 

    In interactive mode, you can write the input and interact using the command line.

    1. How to connect to SQL Server using sqlcmdTo connect to your local machine, specify the SQL Instance name and the credentials:

      sqlcmd -S DESKTOP-5K4TURFSQLEXPRESS -E

      The –S value is to specify the SQL Server name of the instance and -E is to specify a trusted connection. If you do not specify the SQL Server name, it will try to connect to the local machine.

      When you connect, you will see the number 1>:

      Working with the SQL Server command line (sqlcmd)

      The number 1> means that it is connected and ready to receive sentences to execute.

      If you enabled SQL Server Authentication, you will need to specify a user name and a user password (I am assuming that the user is already created). Note that you will need to EXIT of sqlcmd to login with this credential.

      sqlcmd -S DESKTOP-5K4TURFSQLEXPRESS -U jsmith

      The command line will ask you the password. You can optionally specify the password (not recommended, but sometimes is the only way to work):

      sqlcmd -S DESKTOP-5K4TURFSQLEXPRESS -U jsmith -P
      Mypwd$%1234565

    2. How to check the current database in sqlcmd 

      When a SQL Server Login is created, you can define the default database you want to log in. If it is not specified, the master database is the default one.

      Working with the SQL Server command line (sqlcmd)

    3. How to list the databases in sqlcmd 

      The following sentences will list the databases in the SQL Instance:

      In the sys.databases table, you have all the database information:

      Working with the SQL Server command line (sqlcmd)

      You can also use the sp_databases stored procedure:

    4. How to check if the SQL Server is case sensitive in sqlcmd 

      The following T-SQL Sentences are used to detect the collation information including if the machine is case sensitive or not:

      The information displayed will be as follows:

      Working with the SQL Server command line (sqlcmd)

      Modern_spanish is the collation, CI means case insensitive and CS is case sensitive. AS means Accent Sensitive and AI is Accent Insensitive.

      You can also check the information, with the sp_helpsort procedure:

      The information displayed is the following:

      Modern-Spanish, case-insensitive, accent-sensitive, kanatype-insensitive, width-insensitive

    5. How to check the SQL Server edition in SQL 

      You can check the SQL Server Edition, using the following T-SQL sentences:

      The result is the following:

      Working with the SQL Server command line (sqlcmd)

    6. How to check the SQL Server Authentication in sqlcmd 

      Before Azure, there were two options to Authenticate to SQL Server:

      1. Windows Authentication where you can use an Active directory account or a local Windows account.
      2. Windows Authentication and SQL Authentication where you can also authenticate using an account created in SQL Server.

       

      To detect the authentication, you can use the following sentences:

      The result displayed is the following:

      Working with the SQL Server command line (sqlcmd)

      If the result is 0, it means that both authentications are enabled. If it is 1, only Windows Authentication is enabled.

    7. How to list the variables set 

      In order to list all the variables set, run the following command in sqlcmd:

      :ListVar

      It will show all the variables set:

      Working with the SQL Server command line (sqlcmd)

  2. Running sqlcmd in command mode 

    You can run sqlcmd as commands. You can run scripts in command mode.

    1. How to run a T-SQL script and receive the output in a file in sqlcmd 

      In the next example, we will show how to run a script using sqlcmd and show the results in another file.

      We will first create a script file named columns.sql with the following sentences:

      select * from adventureworks2014.information_schema.columns

      In the cmd, run the following command to invoke sqlcmd:

      sqlcmd -S DESKTOP-5K4TURFSQLEXPRESS -E -i c:sqlcolumns.sql -o c:sqlexit.txt

      -i is used to specify the input. You specify the script file with the queries.
      -o is used to show the results of the input in a file.

      The exit.txt file will be created:

      Working with the SQL Server command line (sqlcmd)

      If we open the file, we will see the output results:

      Working with the SQL Server command line (sqlcmd)

    2. How to back up in sqlcmd 

      We will first create a script to back up the database named backup.sql:

      In the cmd run the following command:

      sqlcmd -S DESKTOP-5K4TURFSQLEXPRESS -E -i c:sqlbackup.sql -o
      c:sqloutput.txt

      The output will be similar to this one:

      Working with the SQL Server command line (sqlcmd)

      The commands will create a backup in a file named backup.sql in the c:sql folder:

      Working with the SQL Server command line (sqlcmd)

    3. How to work with variables in sqlcmd 

      You can work with variables in sqlcmd. The following example will set the variable DATABASENAME with the value adventureworks2014 and then we change the context to the database specified:

      The result displayed is the following:

      Working with the SQL Server command line (sqlcmd)

      As you can see, SETVAR is used to specify the value of the variable. Then you need to use $() for the variable.

      Another example is to set the variable CONTACTTYPEID to 3 and use it in the where clause to find a contact type ID according to the value of the variable:

      The result displayed is the following:

      Working with the SQL Server command line (sqlcmd)

    4. How to list the table names of a database in sqlcmd 

      You can list the tables of the database using the information_schema.tables view. We will first create a script named tables.sql. This script contains the tables and views:

      Next, we will invoke sqlcmd to execute the script.

      sqlcmd -E -i c:sqltables.sql -o c:sqloutput.txt -S DESKTOP-
      5K4TURFSQLEXPRESS

      The result displayed are the following in the output.txt file:

      Working with the SQL Server command line (sqlcmd)

    5. How to list the column names of a database in sqlcmd 

      The following sentences will list the table names and the column names of a database in a script named columns.sql:

      In the cmd run this command:

      sqlcmd -E -i c:sqlcolumns.sql -o c:sqloutput.txt -S DESKTOP-
      5K4TURFSQLEXPRESS

      The result of the output.txt is the following:

      Working with the SQL Server command line (sqlcmd)

    6. How to check all the commands 

      You can check all the sqlcmd commands using this command:

      Sqlcmd -?

      This command will list all the commands available:

      Working with the SQL Server command line (sqlcmd)

    7. How to exit if the command fails 

      The following command will exit if it fails using the –b parameter:

      sqlcmd -E -q “create table adventureworks” –b -S DESKTOP-
      5K4TURFSQLEXPRESS

      The command will exit if there is an error:

      Working with the SQL Server command line (sqlcmd)

    8. How to display error messages according to the error level 

      If there is an error, the error is displayed. However, according to the error level, you can stop this behavior by default using the -m option.

      Here it is an example about this:

      The following command shows an error message:

      Working with the SQL Server command line (sqlcmd)

      However, if you add the –m 16, the error will no longer be displayed because the error has the level of 15:

      sqlcmd -E -q “create table adventureworks” -m 16 -S
      DESKTOP-5K4TURFSQLEXPRESS

      -m 16 will show only the errors higher than 16. As you can see the error message is no longer displayed

    9. How to accept user input 

      The following example will run a SQL script with one variable. The example will create a database specified by the user.

      We will first create a script named createdb.sql with the following content:

      Next, in the cmd we will run the database specifying the database name:

      sqlcmd -E -v DATABASENAME=”Userinput” -i
      c:sqlcreatedb.sql

      The command will create a database named Userinput.

      In sqlcmd you can run the sp_databases stored procedure:

      And you will be able to see the database created:

      Working with the SQL Server command line (sqlcmd)

  3. Working in SSMS in sqlcmd mode 
    1. How to run sqlcmd in SSMS 

      Yes, in SSMS, click on your query and select Query>SQLCMD Mode:

      Working with the SQL Server command line (sqlcmd)

      The following example will create a database named sales in SSMS.

      If everything is OK, a database named sales will be created:

      Working with the SQL Server command line (sqlcmd)

    2. How can we set the sqlcmd mode by default in SSMS? 

      Yes, to do this, go to Tools>Options in SSMS and check the By default, open new queries in SQLCMD mode.

      Working with the SQL Server command line (sqlcmd)

  4. Working with PowerShell 
    1. How to invoke sqlcmd using PowerShell 

      PowerShell can be used to invoke sqlcmd. To open PowerShell for SQL Server, go to the Windows Search and write sqlps:

      Working with the SQL Server command line (sqlcmd)

      In sqlps, write these cmdlets to run the sp_who stored procedure:

      invoke-sqlcmd -query “sp_who”

      Working with the SQL Server command line (sqlcmd)

      Note that if you have SSMS 17 or later, SQL PowerShell is installed separately. For more information about installing SQL PowerShell, refer to our link:

       

    2. How to run scripts in SQL PowerShell (check table fragmentation) 

      It is possible to run SQL Server scripts with PowerShell. The following example will show the fragmentation of the table of the table Person.Address in the Adventureworks database.

      We will first create a script named fragmentation.sql:

      In PowerShell for SQL Server, run this script:

      Invoke-sqlcmd –inputfile “c: sqlfragmentation.sql” | Out-File
      -filePath “C:sqloutps.txt”

      The output of the outps.txt file will be the following:

      Working with the SQL Server command line (sqlcmd)

    3. How to use verbose output 

      Verbose is used to display information that is not displayed by default. For example, the command print is not displayed by default. Let’s take a look to an example.

      In sqlps, run this cmdlet:

      Invoke-Sqlcmd -Query “PRINT ‘HELLO SQLSHACK’”

      The cmdlet will not return any value. However, if you run with the parameter verbose, the output can be displayed:

      Invoke-Sqlcmd -Query “PRINT ‘HELLO SQLSHACK’”
      –verbose

      Working with the SQL Server command line (sqlcmd)

  5. DAC 
    1. How to work with a Dedicated Administrator Connection (DAC) in sqlcmd 

      If SQL Server fails to connect in SSMS or other tools, it is possible to try a DAC connection. This connection is connection allows to diagnostic and verify the problems of the Database Server. When the SQL Server is corrupt and it is not possible to connect to it, DAC connection usually works.

      The following example shows how to connect to a SQL Server database:

      sqlcmd -S DESKTOP-5K4TURF -E -A -d master

      -A is used to specify a DAC connection and -d is used to specify the database to connect.

      A DAC connection requires the SQL Browser service to be started and enabled. To enable the SQL Browser service, if it is disabled, you can use the following commands:

      sc config sqlbrowser start=demand

      If it is enabled, the message will be the following:

      Working with the SQL Server command line (sqlcmd)

      To start the service, you can use the following commands:

      net start sqlbrowser

      Working with the SQL Server command line (sqlcmd)

  6. When to use sqlcmd mode, interactive mode, DAC, SSMS, PowerShell 

    Use interactive mode when you need to run multiple queries and administrative tasks. The sqlcmd command line mode is used when you have specific tasks like a backup. Use it when you have a specific task in mind. DAC is used for disaster recovery (for example when the master database is damaged and you cannot access to SQL Server using SSMS or other conventional tools). SSMS in sqlcmd mode can be used to create scripts. It is great to debug and program large scripts to be used later in the command line mode.

    Use PowerShell if you have other PowerShell scripts and you need to integrate some sqlcmd invocations to it.

    Conclusion

    Sqlcmd is a very powerful feature that can help us to automate tasks in SQL Server. You can run scripts and save the results of your queries in a text file.

    Previous article in this series:

    See more

    To boost SQL coding productivity, check out these SQL tools for SSMS and Visual Studio including T-SQL formatting, refactoring, auto-complete, text and data search, snippets and auto-replacements, SQL code and object comparison, multi-db script comparison, object decryption and more

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/315070.html

(0)
上一篇 2天前
下一篇 11小时前

相关推荐

发表回复

登录后才能评论