Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
9answers
31k views

How to export SQL Server 2005 query to CSV

I want to export some SQL Server 2005 data to CSV format (comma-separated with quotes). I can think of a lot of complicated ways to do it, but I want to do it the right way. I've looked at bcp, but I ...
14
votes
5answers
51k views

How to export data as CSV format from SQL Server using sqlcmd?

I can quite easily dump data into a text file such as: sqlcmd -S myServer -d myDB -E -Q "select col1, col2, col3 from SomeTable" -o "MyData.txt" However, I have looked at the help files for sqlcmd ...
9
votes
2answers
552 views

Visual Studio 2010 database edition schema compare where target is dbproj

I'm using visual studio 2010 database edition and running a schema compare against a SQL database instance to sync up new objects on the database which arent yet in my project (dbproj). My solution ...
6
votes
4answers
3k views

Display DataType and Size of Column from SQL Server Query Results at Runtime

Is there a way to run a query and then have SQL Server management studio or sqlcmd or something simply display the datatype and size of each column as it was received. Seems like this information ...
5
votes
2answers
420 views

Is it possible to automatically force SQLCMD mode in script

We're using Visual Studio Database Professional and it makes heavy use of SQLCMD variables to differentiate between environments while deploying. I know there's several directives available for ...
4
votes
4answers
326 views

how do i run a script using a BAT file

i would like to have a BAT file open a sql server script currently i have this code in the sql file: declare @path varchar(255), @mydb varchar(50) SELECT @mydb = 'timeclockplus' select @path = ...
4
votes
7answers
2k views

How to execute 3GB SQL file (Micrsoft SQL Server)?

I have a big SQL file that does not fit into memory and that needs to be executed against Microsoft SQL Server 2008. It seems that the sqlcmd.exe tool always loads it into memory first which is ...
4
votes
3answers
3k views

SQLCMD, command-line variables and script :setvar

When running SQLCMD.exe and providing command-line arguments for scripting variables, I expect that the values provided on the command-line will override those defined in the SQL script file. e.g. ...
3
votes
2answers
45 views

How to make a OR statement in a batch file?

Hi want to exclude 2 or more files from my batch file. My batch file executes all SQL files in that folder. Here is the code: ECHO %USERNAME% started the batch process at %TIME% >output.txt ...
3
votes
2answers
453 views

Conditional logic in PostDeployment.sql script using SQLCMD

I am using a SQL 2008 database project (in visual studio) to manage the schema and initial test data for my project. The atabase project uses a post deployment which includes a number of other scripts ...
3
votes
1answer
88 views

Database Project and SQLCMD doing a comparison

We currently have a Database Project, which we wrote a WIX Installer for to deploy it, using VSDBCMD means we are able to do a comparison against the current database, and do an update or fresh ...
3
votes
1answer
100 views

Programmatically detect which SQL Server is principal,which is the mirror?

I am looking for a way to programmatically query which SQL server is serving as the principal SQL server and which one is the mirror in a pair. Does anyone know if this is possible via PowerShell ...
3
votes
1answer
602 views

SQLCMD utility from BAT file - how to return ERRORLEVEL in case of syntax error

How can I get %ERRORLEVEL% from SQLCMD utility when some of .sql files contains syntax error? These files create stored procedures. They don't invoke "raiseerror", but they can conatin syntax error ...
3
votes
1answer
2k views

Exporting CSV data using SQLCMD.EXE

I'm trying to export data from SQL Server into CSV format. I have a bat task to do this that's run at regular intervals. Command is: C:\Program Files\Microsoft SQL Server\[...]\SQLCMD.EXE" -d [db ...
3
votes
1answer
2k views

How to pass in parameters to a SQL Server script called with sqlcmd?

Is it possible to pass parameters to a SQL Server script? I have a script that creates a database. It is called from a batch file using sqlcmd. Part of that SQL script is as follows: CREATE DATABASE ...
3
votes
2answers
2k views

Need help to write bat file that execute sql scripts in (sql server 2008 and another 3 files.?

I am sure these has been asked before but cannot find clear instruction how to create a batch file lets call it "Update Database" this batch file should Execute sql scripts located in different ...
3
votes
6answers
2k views

build SQL query string using user input

i have to make a string by using the values which the user selects on the webpage suppose i need to display files for multiple machines with differnt search criteria.. i currently use this code: ...
3
votes
4answers
3k views

Run sqlcmd without having SQL Server installed

I'm working on a Java program that is calling sqlcmd. It works perfectly on a computer with SQL server installed, but not at all on a computer that doesn't. I want to include the necessary exe and ...
3
votes
2answers
648 views

BCP Command gives different output in SQL Server 2005 compared to 2008?

I have executed two identical bcp commands on two different setups with the same data. Machine A = Windows Vista machine which is running SQL Server 2008 Machine B = Windows Server 2003 machine ...
3
votes
3answers
532 views

SqlServer 08: Query to list all databases in an instance?

How do I list all the databases for a given sql server 08 instance using sqlcmd?
3
votes
4answers
1k views

Disable SQLCMD Syntax Check

We sometimes write dataport scripts that rename tables or columns and have other complex logic. We also have SQL in IF statements referencing those old columns or tables. We have a standard to use ...
2
votes
3answers
35 views

Drop DB using MSBuild even if in use

I am using the following command in my MSBuild file to drop a database sqlcmd -E -S <ServerName> -Q "DROP DATABASE <DBName>" But sometimes I get the error Cannot drop database ...
2
votes
3answers
179 views

SQL Server (SQLCMD), Python and encoding issue when using non ascii chars

i'm facing an encoding issue with my python code, when asking data that are in SQL Server 2005. (because i was unable to compile PyMSSQL-2.0.0b1) i'm using this piece of code and i am able to do some ...
2
votes
2answers
234 views

get .BAT file or SQLCMD to prompt user for input

I am attempting to run the following query sqlcmd -STEMP7 -E -devolive_base -w256 -QEXIT("DECLARE @r int EXEC @r = usp_AddToObservationtbl $,$,$ SELECT @r") I am attempting to get the BAT file ...
2
votes
1answer
155 views

Is there a SQLCMD equivalent on *nix?

We have a heterogeneous environment where some developers are using OSX and some are using Windows. Our build process involves DB revision control and needs to call SQLCMD to execute arbitrary ...
2
votes
1answer
255 views

sqlcmd - How to get around column length limit without empty spaces?

I'm trying to use sqlcmd on a windows machine running SQL Server 2005 to write a query to a csv file. The command line options we typically use are: -l 60 -t 300 -r 1 -b -W -h -1 However, the ...
2
votes
3answers
2k views

Error Handling with Batch File & Sqlcmd

I have a batch file that runs some SELECT queries using sqlcmd, puts the results into text files, and uploads those files onto an FTP server. That's all working just the way it should, which is how I ...
2
votes
3answers
342 views

SQLCMD :r <path> where path is a variable

Does the SQLCMD command :r support non-constant literal paths? For example: setvar $(path1) '.\script.sql' :r $(path1) -- SQL01260: A fatal parser error occurred: . :r '$(path1)' -- SQL01260: A ...
2
votes
1answer
243 views

How to tell if a variable (-v) is defined on command line (SQLCMD)

Is there a way to tell if a variable is defined on command line using SQLCMD? Here is my command line: sqlcmd -vDB="EduC_E100" -i"Z:\SQL Common\Admin\ProdToTest_DB.sql" Inside ProdToTest_DB.sql ...
2
votes
3answers
217 views

Does the use of AJAX increase memory usage of PHP?

I think the answer to this question is no but I do not have anymore leads of the problem I am trying to figure out. I initially had a single script that did some database queries via SQLCMD. I have ...
2
votes
2answers
2k views

Is there a way to suppress “x rows affected” in SQLCMD from the command line?

Is there a way to suppress "x rows affected" in SQLCMD from the command line? I'm running an MSBuild script and don't want it clogging up my log on my build server. I'd rather not have to add "SET ...
2
votes
3answers
565 views

-S unknown option when using sqlcmd

I get an error when I execute the command below from a DOS window in Windows XP with SQL Server 2008. -S is the option to specify the server name. error: Sqlcmd: '-S': unknown option. sqlcmd –S ...
2
votes
2answers
1k views

Powershell SQLCMD

We were experiencing problems with Powershell and SQLCMD, when there was sapces in the -v parameter variable powershell wouldn't run the command. e.g. sqlcmd ... -v VAR="Some space" Has anyone ...
2
votes
3answers
990 views

How can I run sqlcmd.exe from an ASP page?

As part of our database revision control (and auto-installation) procedures we need to be able run sqlcmd.exe on various .sql files from within an ASP page. The code I'm using to do this is: Dim cmd ...
2
votes
1answer
1k views

how to avoid sqlcmd blank line between Resultsets?

refering my last question on extracting SQL stored procedures into .sql files (see here) I have another question: how to avoid or delete the sqlcmd blank line between Resultsets? Reason (see MSDN) ...
2
votes
5answers
613 views

Batch script for re-creating database from source control

As far as I understand, if I want to get my database under source control then I need to be checking in change scripts for each change and then running them from some revision to get the correct DB. ...
1
vote
1answer
93 views

How to get the relative path of file in SQLCMD Mode in SSMS?

I have the below master script which creates tables, and inserts some data and then creates the stored procedures. --todo_master.sql use master go :r todo_create_ddl.sql :r todo_create_dml.sql :r ...
1
vote
1answer
61 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
64 views

Proper way to detect if SQLCMD.exe is installed?

I am creating a class library that takes .SQL files as input (FileInfo) and a connection string. It then attempts to execute the sql file against the connection. I have decided to support ...
1
vote
3answers
99 views

SQLCMD not working when run using Java

This is an extremely strange situation, but I just cannot point out what I'm doing wrong. I'm executing a big bunch of SQL scripts (table creation scripts, mostly). They are executed through Java, ...
1
vote
1answer
33 views

dynamic sql sp_executesql works but shoots blanks

Having some fun with t-sql and sp_executesql (test output below). The last piece of the puzzle was the need for sp_executesql to have uppercase N for the query and definition parameters. I have a ...
1
vote
2answers
60 views

Running queries against multiple servers?

I am not sure what the best design pattern for this problem is so any suggestions would be greatly appreciated. I have two SQL Servers A (with DBs P,Q,R) and B (with DBs X,Y,Z). What is an efficient ...
1
vote
2answers
151 views

SQLCMD Incorrect syntax near '.'

When executing a stored procedure using SQLCMD with the following parameters: . sqlcmd -S $sql_server -U $sql_usr -P $sql_pwd -d $sql_db -Q "EXEC $storedProc $dateVariable, $regionType, ...
1
vote
1answer
143 views

Powershell - Invoke-SqlCmd, retrieving PRINT statements asynchronously

I would like to know if its possibly to retrieve PRINT statements from a stored procedure asynchronously? Currently the code below, only displays all the PRINT systems once the stored procedure has ...
1
vote
1answer
129 views

Suppressing “X rows affected” in SQL Server using sqlcmd and Java

In my Java program, I am trying to execute a bunch of SQL scripts using sqlcmd via getRuntime.exec(). Earlier, I had been using osql this way - osql -n -S SERVER -U sa -P PASSWORD -q "SET NOCOUNT ...
1
vote
2answers
122 views

SqlCmd :connect with variables and backslash

When using SqlCmd to try and connect to an active server I have discovered that these both work: :connect myServer\myInstanceName -U myLogin -P myPassword :setvar INSTANCE myInstanceName :connect ...
1
vote
3answers
79 views

How to pass a batch file argument with a dot character in it?

I have a batch file that accepts part of the database name as an argument and create the database. Part of the batch file is like the following: eg. sqlcmd -S %1 -i "createDB.sql" -v dbname = DB%2 ...
1
vote
1answer
103 views

how to query a database using wpf application and get output like SQL Management Studio?

I have one store procedure in my database, it makes many things and print results when i run it on sqlserver management studio (ssms), for example: exporting table abc... exporting table def... ...
1
vote
2answers
220 views

SQLCMD passing in double quote to scripting variable

I am trying to pass in double quote to a scripting variable in SQLCMD. Is there a way to do this? sqlcmd -S %serverName% -E -d MSDB -i MyScript.sql -m 1 -v Parameter="\""MyValueInDoubleQuote\""" ...
1
vote
1answer
90 views

Issue executing an exe when the path has spaces.

This works: SET server=MyServer SET db=MyDb FOR /F "usebackq tokens=1" %%i IN (`sqlcmd -S %server% -d %db% -w200 -h-1 -E -Q "set nocount on; select REPORTING_DATE FROM dbo.CURRENT_REPORTING_DATE"`) ...

1 2 3 4