Viewing 15 posts - 46 through 60 (of 64 total)
You really just need to get a connection to the SQL Server from your Unix box. A quick search for SQL Server Linux Client got me to http://richbs.org/post/43142767072/connecting-to-microsoft-sql-server-from-unix-linux-mac
That page will...
July 30, 2014 at 6:22 am
When you have a situation like this, there are a lot of places that have tools that will automatically run through all the diagnostic information for you.
One of my favorite...
July 29, 2014 at 2:56 pm
I would take a look at the BCP utility.
If you use -c it will convert everything to a char type and use a tab as a separator so you...
July 3, 2014 at 2:15 pm
SSRS has a built in export to CSV. Would that work to get a text format?
July 3, 2014 at 2:04 pm
In a multi-threaded application, anything that isn't thread safe should be wrapped in a sync lock. This makes it so that only one thread can enter the sync lock section...
May 29, 2014 at 3:03 pm
If you change your UNION to a UNION ALL, it will work. Note that it will not filter out duplicates like UNION will.
May 2, 2014 at 2:13 pm
I think the same issue can be had anywhere. It might be less likely to happen if reports are developed by the BI experts because we know how to test...
January 21, 2014 at 12:49 pm
This kind of depends on what your security needs are. If you just want everyone to be able to be able to get to the reports, then you can do...
January 17, 2014 at 10:06 am
Another option is to use a tally table.
See http://www.sqlservercentral.com/articles/T-SQL/62867/%5B/url%5D
and go down to the section dozens of other uses. What you're looking for is in that section.
December 9, 2013 at 10:52 am
Oh yeah, you have the convert in there, which returns a VARCHAR type. So even though it's displaying numbers, the datatype is VARCHAR.
You can move the AVG function directly around...
November 4, 2013 at 7:07 am
Steve-0 (11/4/2013)
I'm new to writing SQL queries and I'm a bit stumped in this one. The below query currently defines a total elapsed time of specific jobs that I...
November 4, 2013 at 6:43 am
That sounds like a permissions issue with the folder where you're trying to put the text files. We're doing something similar and we have a shared folder set up with...
November 1, 2013 at 2:30 pm
Typically what you do is something like...
(This is a generic table to illustrate the process)
CREATE TABLE #tmp
(
Col1 INT,
Col2 VARCHAR(50),
Col3 VARCHAR(50)
)
And then you insert into the temp table for all the...
November 1, 2013 at 1:39 pm
I haven't looked up the error code, but at a guess, I'd say the server was unable to get information from your domain controller.
The best thing to do is to...
November 1, 2013 at 1:19 pm
The first thing that comes to mind is to make use of a temp table or a table variable. Insert your delivery information into a temp table, and then update...
November 1, 2013 at 7:29 am
Viewing 15 posts - 46 through 60 (of 64 total)