Osql is a Microsoft Windows 32 command prompt tool that can be used to run Transact-SQL statements and script files. The osql tool uses the ODBC database application programming interface (API) to communicate with the server.
This article describes how to use the cmd command line window in windows to operate Sqlserver. First, we can run osql? /, So that all the commands that can operate sqlserver through the CMD command line is displayed. osql http://www.jb51.net/database/57662.html
(With images and truth)
Then we know that the connect server is-S, the login ID is-U, And the password is-P.
Let's try it now.
Run osql-S [Database Server]-U [Login User Name]-P [Login Password]
1> indicates that the connection is successful. You can enter an SQL statement to perform the operation.
DotNetGeek does not think it is very useful to operate Sqlserver using the CMD command line, and the Data Layout displayed by the select statement is not neat and beautiful,
If you happen to want to operate SQL server on a computer without SQL Server, you can use this method.