Viewing 15 posts - 3,676 through 3,690 (of 59,067 total)
All those NULLs and Blanks that you're joining on? Yeah... guess what they're doing? MASSIVE accidental CROSS JOIN which is more politely called "many-too-many" join just on those alone.
Second, are...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 3, 2022 at 1:45 am
I love having a choice for all the reasons that both sides have stated both as a presenter and as an attendee. It's the best of both worlds.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 3, 2022 at 12:46 am
Thank you. It appears that Full Text Indexes have been available on Azure since 2015 so that's not the issue. The probable issue is that all software on Azure is...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 3, 2022 at 12:09 am
The use of the SUM(OVER) Windowing function should do it for you.
I also have to ask... why to you need a "running total" for this? Are you actually looking for...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2022 at 10:23 pm
I don't know much about the language used in SSRS but why wouldn't you just find the position of the colon, add 1 to that, and use that as the...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2022 at 10:19 pm
I don't know about your issue but I am interested in the "requirements". Which cloud are you moving to and are you having to remove full-text indexing because they don't...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2022 at 10:15 pm
pietlinden wrote:Oh, okay, Gotcha. Something like this?
select backup_path
, LEFT(backup_path,CHARINDEX('\FULL\',backup_path,1) + LEN('FULL\'))
from #tbl_backup_path;Thank you working perfect.
Do you understand how and why it works?
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2022 at 5:16 pm
I'm thinking that your best bet would be to ask the folks at AWS.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2022 at 5:15 pm
Sorry for the dumb question in advance. So I just bought a SQL 2014 standard license from a vendor, but noticed that the product key can be looked up...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2022 at 5:07 pm
It would be helpful if you'd post the CREATE TABLE statement and a few rows of data in an INSERT/VALUES fashion. We also need to know what day of the...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2022 at 4:28 pm
I'll remind you that 1) it's not my site and 2) it's not my site. 😉
It is, however, your contention this is easy...
'Nuff said and understood. My apologies.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2022 at 4:20 pm
SPAM is a problem now, and it's not a simple one. I've filed a ticket to work with the third party on what is not...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2022 at 4:34 pm
With the understanding that I don't use Analysis Services, can you use T-SQL in SSAS? There are some very fast methods for calculating MEDIAN in T-SQL.
You can query...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2022 at 4:30 pm
One thing I couldn't do easily was to deal with dates (that are date values in excel). These would show as "44649.94918" in the values table. When you would...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2022 at 4:13 pm
With the understanding that I don't use Analysis Services, can you use T-SQL in SSAS? There are some very fast methods for calculating MEDIAN in T-SQL.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2022 at 3:44 pm
Viewing 15 posts - 3,676 through 3,690 (of 59,067 total)