Viewing 15 posts - 1 through 15 (of 117 total)
declare @MySQL as varchar(max)='<table><tr><td>
<a href=' + char(39) + 'https://blah/Reports_SSRS/report/subfolder1/Subfolder%20Stuff/report%20Name?svcMeasure=' + cast(1 as varchar(2)) + '&svcProv=' + 'MATT' + char(39) +'>'...
October 11, 2018 at 12:44 pm
When sending HTML tables via DBMail I used the following:
EXEC msdb.dbo.sp_send_dbmail
@profile_name = XYZProfileName',
@recipients = 'Test@test.com',
@subject = 'Your Subject Here',
October 11, 2018 at 12:29 pm
You are not missing anything. It is reported on MS Connect as an issue. Please use this link to vote for this to be fixed.
January 12, 2018 at 8:05 am
Here is what you need, I think. Union All works but in order to get the results you want you need to add some NULL columns. It's a weird work...
January 4, 2018 at 7:42 am
You maybe able to use a count function and count the Number of ProductID's and filter out > 1.
January 4, 2018 at 7:18 am
c'mon man! Group By is 5th in the list and Having is 7th. 7, by my reckoning, still comes after 5. Having is the correct answer. :blink:
September 29, 2017 at 7:08 am
I also used IDrive. I took advantage of a cheapskate offer from CNET and got the physical drive for free. It's been perfect for me and the wife with just...
September 13, 2017 at 8:17 am
acmedeepak,
In order to help you we need more information along with some sample data and expected output.
We also don't know how you have translated the query...
May 22, 2017 at 9:23 am
Shawn, I've encountered similar situations when dealing with data that had "lived in" another system at some point (DB2 in my case) and hidden characters were imported into varchar fields. ...
May 22, 2017 at 8:16 am
My original thought was that since there was no PK there where no indexes either. Sorry that won't work.
My only other thought is to do the opposite of what you...
May 5, 2017 at 3:35 pm
I think that you need a Numbers or Tally Table here. You can use it to define your dates, week and between dates for you where clause. Jeff Moden has...
May 5, 2017 at 1:15 pm
I think I would do this in VBA inside the XLS file. Basically it's for each tab save as using the existing tab name.
May 5, 2017 at 12:31 pm
Tacy,
Assuming you are not in a position to add a PK I would suggest adding an Index on your Date Field and depending how "wide" you data is...
May 5, 2017 at 12:29 pm
I would at it after the Commit and Rollback statements, respectively.
May 3, 2017 at 9:37 am
May 3, 2017 at 8:21 am
Viewing 15 posts - 1 through 15 (of 117 total)