Jump to content

SQL server tests


RandyKisch

Recommended Posts

  • Administrators

In the mean time you can execute queries from premade batch files to see if everything is alright using sqlcmd.


@echo off

sqlcmd -d AdventureWorks2008R2 -q "SELECT FirstName, LastName FROM Person.Person WHERE LastName LIKE 'Whi%';"

You can write this in a batch file and you can call it from terminal on a mobile device.

Link to comment
Share on other sites

  • 3 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...