Does anyone have a quick cheat or command line link for OSQL?

my friend complained that SQL management studio express was prohibited by some of the security settings set by his system administrator. I recommended using OSQL

alt text

my question

I need some basic orders, such as the best way to connect, debug, and work with SQL Express databases. any ideas?

+3
source share
2 answers

MSDN is always the best source.

osql on MSDN (with examples).

However, microsoft will remove this utility in future versions, so you should start using it sqlcmd.

+6
source

, .SQL( ), osql < filename.sql -i filename.sql. .

+1

Source: https://habr.com/ru/post/1780863/


All Articles