5
votes
4answers
899 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
5answers
2k 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 …
3
votes
6answers
436 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 …
2
votes
4answers
102 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
2answers
231 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
2answers
412 views
how to avoid sqlcmd blank line between Resultsets?
hello,
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 …
1
vote
2answers
138 views
SSMS in SQLCMD mode - Incorrect Syntax
It is my day for weird errors.
I use a database project and as a part of Post Deployment, we use SQL Scripts to populate data in our tables.
alter authorization on database::atlas to sa;
go
ALTER …
1
vote
3answers
310 views
Trying to restore a database from a large .sql file using sqlcmd - error
I am trying to restore database data using the following command from a large .sql file
"Type myfile.sql | sqlsmd –S server –U username –P password"
I get the following error:
Sqlcmd: Error: …
1
vote
3answers
441 views
How can I run sqlcmd.exe from an ASP page? (Free hat)
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 …
1
vote
2answers
3k 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 …
1
vote
5answers
368 views
Batch script for re-creating database from source control
Hi Everyone,
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 …
1
vote
2answers
694 views
Connect to SQL Server from cygwin window times out, from DOS prompt works
The title says it all. I can connect to my SQL Server database via sqlcmd from a DOS command window, but not from a Cygwin window. From DOS:
F:\Cygnus>sqlcmd -Q "select 'a test'" -S .\SQLEXPRESS
…
1
vote
7answers
663 views
Free SQL Server development tools
I usually use Management Studio and SQLCMD to work with SQL Server. For the most part, they work for me. I'm just kind of curious what else is out there. I just want to find out if there are any …
0
votes
2answers
24 views
Remote Informix 11.5 Command Line Client
Does a command line tool ship with Informix 11.5 similar to SQLCMD for SQL Server?
If yes, how do I connect to a remote server and perform regular SELECT/INSERT/UPDATE queries using it?
0
votes
3answers
49 views
How to encrypt all existing stored procedures of a database
Is there any possibility to encrypt all existing stored procedures of a SQL Server 2008 database AFTER they have been created via an SQLCMD script?
The reason I want to do this is the following:
I'd …
