Viewing 15 posts - 811 through 825 (of 1,415 total)
webrunner (11/30/2015)
Grant Fritchey (11/29/2015)
So other people who will find this in the future and read it know, how did you solve the problem?
It seems like the answers marked "This worked...
December 2, 2015 at 11:54 am
check to see if that querybuilder has a timeout. the 30005 duration looks a bit too suspiciously like a timeout. Just a guess tho!
November 27, 2015 at 1:05 pm
patricklambin (11/19/2015)
patrickmcginnis59 10839 (11/18/2015)
patricklambin (11/18/2015)
As several...
November 19, 2015 at 6:14 am
patricklambin (11/18/2015)
As several posters , I...
November 18, 2015 at 11:26 am
Jeff Moden (11/18/2015)
patrickmcginnis59 10839 (11/18/2015)
Jeff Moden (11/17/2015)
Hugo Kornelis (11/17/2015)
November 18, 2015 at 8:32 am
I think that Jeff's and Hugo's recollections are going to be biased, so I think a link should be posted for the more objective thread participants, and we can put...
November 18, 2015 at 7:56 am
Jeff Moden (11/17/2015)
Hugo Kornelis (11/17/2015)
November 18, 2015 at 6:13 am
Here's a couple of vb.net examples with bound and unbound datagrids, guessing that its vb.net you're using, you should at least specify the language and whether your datagrid is using...
October 22, 2015 at 1:29 pm
I don't think you're going to be able to run it this way.
https://msdn.microsoft.com/en-us/library/ms190312.aspx
This page says that the argument that you're trying to specify the instance in must be a "string...
October 22, 2015 at 11:57 am
try "sqlcmd" (without the underscore separating sql and cmd)?
October 22, 2015 at 10:57 am
"SQL is imperfect, certainly, but if all it is for is for data access, you might as well just use flat files."
LOL
October 16, 2015 at 12:40 pm
ramana3327 (10/7/2015)
Do you mean first give the extention as .csv in output and then open using excel?
Ah thats where I went wrong, thats a good way to do it. Often...
October 7, 2015 at 3:23 pm
when you import into excel, do you use a unique column delimiter? I usually am pretty successful when I use a suitable column delimiter.
You could also consider hooking excel up...
October 7, 2015 at 11:37 am
Excel would probably do nicely with formatting, that would be one of my choices. Maybe you could also investigate building html from your query and just outputting that?
October 7, 2015 at 6:32 am
sqlcmd -S SERVERNAME -d DATABASENAME -W -h -1 -s "|" -i sql_query.txt >output_file.txt
-W remove trailing spaces
-h -1 remove column headers
-s "|" I like to use the vertical pipe as column...
October 6, 2015 at 1:08 pm
Viewing 15 posts - 811 through 825 (of 1,415 total)