@echo off
set TableName=%1
call ExportDbData_Configurator_on_%computerName%.cmd
set _query="set nocount on;select * from %TableName%"
set _queryTimeOut=300
::ECHO THE RESULT
ECHO sqlcmd -S%_hostNamdAndInstance% -U%_sqlLogin% -P%_passwd% -d%_dbName% -Q%_query% -o "%_CsvDataPath%\%TableName%.csv" -s%_fieldSeparator% -u -W -w%_rowWidth% -h-1 -b -t%_queryTimeOut% -r1 1>> "%_INSTALLLOG%" 2>> "%_ERRORLOG%"
:: export a table data into TableName.csv file in unicode format , echo the input
sqlcmd -S%_hostNamdAndInstance% -U%_sqlLogin% -P%_passwd% -d%_dbName% -Q%_query% -o "%_CsvDataPath%\%TableName%.csv" -s%_fieldSeparator% -W -w%_rowWidth% -h-1 -u -b -t%_queryTimeOut% -r1 1>> "%_INSTALLLOG%" 2>> "%_ERRORLOG%"
::DEBUG PAUSE
Getting Inherited Controller Routes to work in ASP.NET Core
-
[image: Banner]
By default ASP.NET applies Controller Attribute Routes on concrete types.
If you create a Controller class, the class and its routes are ...
3 weeks ago