Viewing 15 posts - 286 through 300 (of 7,168 total)
ChrisM@Work (2/10/2016)
February 10, 2016 at 6:30 am
I do not use OPENDATASOURCE but the syntax to reference different Worksheets (i.e. "Tabs") is in the FROM clause. So, change [Sheet1$] to [Sheet2$] and see what happens.
February 9, 2016 at 10:38 pm
NineIron (2/9/2016)
k
Like this:
CREATE FUNCTION dbo.fnPressGaneyDownload()
RETURNS TABLE AS
RETURN (
SELECT CAST(
...
February 9, 2016 at 10:35 pm
What day does your standard week begin on, Saturday, Sunday, Monday,...?
As an aside, this is the kind of stuff I would put into my calendar table. So, if you do...
February 9, 2016 at 10:25 pm
I think you have been provided good explanations of CASE and IF, and when you can use each. When you go further into what you are trying to do you...
February 9, 2016 at 9:58 pm
The performance of FORMAT is very poor when used over large sets of data which is unfortunate because the syntax is more readable than any of the other methods available...
February 9, 2016 at 9:44 pm
Seems my reference was not applicable since it was for splitting up a string longer than the allowable 8000 SQL Server supports but still not unbounded like a MAX type.
Clearly...
February 9, 2016 at 7:44 am
MadAdmin (2/9/2016)
So Cast ( intcol as...
February 9, 2016 at 7:34 am
Any reason why they cannot just use the standard Export dropdown available in the ReportViewer to get the PDF version?
February 8, 2016 at 8:10 pm
I have done this using the ReportViewer control by spinning up an alternate Windows Identity in the background that has access to the SSRS Web Services (report server directly) but...
February 8, 2016 at 6:14 pm
I get different plans but indeed see an index seek on both. One item to be careful of with your recommendation regarding the logic:
-- What you should suggest
SELECT SomeID,
...
February 8, 2016 at 6:09 pm
Check out my blog post on this topic.
I had the best luck with SSIS (Attempt 4):
For your case, if you have to stay in T-SQL, see attempt 3. Items...
February 8, 2016 at 2:29 pm
Ed Wagner (2/7/2016)
This was solved over at http://www.sqlservercentral.com/Forums/Topic1759103-3077-1.aspx.
I get an error navving to the link...
February 7, 2016 at 1:54 pm
Please provide the driver version being used for GODADDY Linked Server.
PS going from ascii-255 to UTF-8 may be the issue. Try casting customer to NTEXT or NVARCHAR(MAX) in your SELECT.
February 7, 2016 at 9:52 am
Viewing 15 posts - 286 through 300 (of 7,168 total)