Tagged Questions
The osql tag has no wiki summary.
2
votes
2answers
358 views
SQL Server Login Using OSQL.exe
From Visual Studio 2010 I can connect to my SQL Server Express 2005 instance - by specifying windows authentication. However, when I use a command like it doesn't work:
C:\Program Files ...
2
votes
2answers
83 views
Does anyone has quick “cheat cheat” or “commandline reference” for OSQL?
a friend of mine complained that SQL managment studio express is prohibited by some security setting set by his system admin.
i recommended to use OSQL
my question is
i need some basic orders ...
2
votes
2answers
2k views
Can osql.exe run as a standalone?
I have a program that runs osql.exe from microsoft sql server tools directory and runs a script.
The problem is that on computers that don't have an installation of sql server, this tool is missing. ...
1
vote
1answer
64 views
powershell $LastExitCode -1073741502 when calling osql or sqlcmd
I've written a powershell script to call sqlcmd.exe to execute a sql script against a remote sql server. The powershell script checks $LASTEXITCODE. If $LASTEXITCODE is non zero, I throw "Script ...
1
vote
1answer
48 views
osql does not execute query
I have a system where I only have osql available (SQL2K Express).
I execute queries and at one moment it stopped displaying any results. It seems that actually it does not execute the queries (because ...
1
vote
2answers
499 views
Msg 102, Level 15, state 1 Line 1 Incorrect syntax near 'n'
I have the following query which I am running using a batch file. In the batch file I use the following syntax:
echo populating Application table with values...
SET ...
1
vote
2answers
452 views
Error using osql.exe (Sql Server 2005)
I use sql server 2005 enterprise, windows server 2003.
I try execute osql.exe command, for execute sql file in my server DESSQL:
osql.exe -E -n-1 -i"CarpetaUno\TextFile1.sql"
I get this error:
...
1
vote
1answer
297 views
@@ROWCOUNT in OSQL returns different result than in TSQL
I am experiencing some strange behavior with OSQL, and would appreciate any help.
I have a batch file that will copy a database field from one column to another. Here is a sample script:
SET ...
1
vote
1answer
1k views
Data source name not found and no default driver specified
I am trying to connect to list the servers on my network using osql.exe -L. Instead of a list of servers, however, I get the following error:
[ODBC Driver Manager] Data source name not found and no ...
1
vote
1answer
368 views
osql -S not giving me expected results
I'm trying to write a program in Java that uses osql to generate a list of databases on a server. My code is as follows:
public Object[] findDataBases(String server, String user, String passwd){
...
1
vote
2answers
650 views
Help on getting started with powershell - rewrite an old BAT + SQL file
I'm totally new to powershell, and I need some help to get started.
What I need is to write a small script that backup a SQL database, but every time with different name (to keep the last 4-5 versions ...
1
vote
3answers
2k views
Using osql with nant scripts
I am currently using osql with nant by calling a batch file with arguments. Here are the properties that are defined in my nant script (no, not real username/password values):
<property ...
0
votes
0answers
74 views
append date to osql made backup with batch
thumbs up for this forum and am glad there's so many volunteers around on line.
I'm not familiar with batch, so maybe someone would be so kind to enlighten me with answer. Be very thankfull.
I try ...
0
votes
1answer
32 views
Is there a way to make NAnt catch exceptions and run a roll back script?
I am using NAnt to run some scrips for a deployment. It has simplified the process a lot. The issue now is that when there is an error I want the NAnt task to run my roll back scripts. However I only ...
0
votes
1answer
59 views
adding .bat confirmation for user entering variables
Hi I have been editing my script with some forum help. I just need to add one last section. I need to indicate to the user running the .BAT file if the row was inserted or not? can anyone help me ...
0
votes
1answer
61 views
tidying up .BAT file
I have the script below which is performing correctly, but basically I want the .bat to ask the user if they want a list of casinos before entering the casino name and username, then, if they select l ...
0
votes
1answer
110 views
Window 7 OSQL Batch
I have just got a new work PC from running window 7. I have installed sql server 2008 and I have a batch file that runs osql command as follow:
osql -S MyServer -E -d MSDB -n -o results.txt -i ...
0
votes
2answers
113 views
SQLServer 2005 behavioral differences when using osql and sqlcommand
Is anyone aware of any subtle differences between the behavior of SQL Server 2005 when executing a command via OSQL vs. a programmatic query using SQlConnection?
I have a client with a database on a ...
0
votes
1answer
239 views
How can I use a cmd variable in an osql command?
I'm trying to run an osql command from a cmd shell. I need to use a cmd level variable within my osql command.
For example, I have a variable %mydate%, and I want to pass it in as the value for the ...
0
votes
1answer
376 views
Run OSQL on systems which do not have Sql Server installed
I have a batch file which runs an oSQL command (below).
oSQL -U devUID -P testPwd -S testServer -d testDb -Q "EXEC [dbo].[sprocTEST]"
When I run this batch file on systems which do not have ...
0
votes
1answer
612 views
How to get results from OSQL.exe without dash characters from the command line?
Is there a way to send a osql query from the command line that returns results that do not include the big long line of dash characters that represent the column width?
Here is the sample code I am ...
0
votes
2answers
2k views
Which dll's are required to run osql.exe as a standalone?
According to the accepted answer to this question, the osql.exe utility can be run as a standalone program on a computer without SQLServer, simply by copying the binary file to the new computer. My ...
0
votes
3answers
403 views
Running a batch file to update a field with strange character in SQL Server DB
I have a table called Field in my SQL Server database. The table has a field called "Units".
I have a batch script which inserts a lot of things into here using OSQL and one of the things entered is ...
-2
votes
2answers
170 views
How to run select statment using batch file?
I need to query sql server database using batch file. I put these cmdlines in the batch file. When I run the batch file. Cursor stays there after making trusted connection.
OSQL -E
use db1
SELECT ...