Viewing 15 posts - 1 through 15 (of 28 total)
Hi Phil,
Wordpress has issues converting and showing T-SQL code correctly.
For example the function fn_removelistChars, the function in WordPress code block gets strangely converted.
This part:
WHILE PATINDEX(@list,@txt) > 0
SET @txt = REPLACE(@txt,SUBSTRING(@txt,PATINDEX(@list,@txt),1),'')
RETURN...
October 19, 2022 at 9:54 am
Hey Thomas,
Thanks for commenting and sharing your solution.
Great thinking. I have had this similar solution for years and understand it.
But eventually decided to recreate it. My issue with parameters as...
September 2, 2022 at 5:00 pm
Thanks Phil.
I totally relate to your concern regarding the version control; there are pro/cons. But so-far I have not come to a bullet-proof solution.
I have solved this with 1) either...
September 2, 2022 at 8:58 am
Hi rlDawson_SLCb,
Thank you for reporting this; it is a formatting problem (that occurred with uploading the code) and I will update the code so it will be readable. Readable version...
January 19, 2022 at 3:00 pm
Hi ReeceWatkins-16343,
Thanks for notifying about the English words.
Feel free and fork the repository and remove the words and create a pull request. That would be super awesome and I would...
January 19, 2022 at 2:57 pm
Hi,
you can use all the Markdown formatting text for the output. You can try: Basic Syntax | Markdown Guide
I agree with QUOTENAME() function; great remark.
Best
December 3, 2021 at 4:54 am
Couple of shorter solutions:
--Solution 1
SET DATEFIRST 1
DECLARE @d DATE = '2016-05-13 00:00:00.000'--GETDATE()
WHILE (@d < '2099/01/01')
BEGIN
IF DATEPART(dw,DATEFROMPARTS(YEAR(@d),...
May 7, 2018 at 11:53 am
Hi Jay,
sorry for late response.
This looks to me that ROCR is not available at the right location from where you are calling this R script. So...
September 4, 2017 at 6:45 am
Thank you Nick,
Agree with your points. Thank you for point them out and thumbs up on article. 🙂
July 6, 2017 at 2:54 am
Hi Nick,
I would be careful as to what type of data to be used in PCA, as this algorithm is sensitive to types of data (nominal, ordinal, categorical, interval)....
July 5, 2017 at 12:08 am
Hi,
thanks for feedback.
Yes, you have to install it manually.
There is an article on how to install missing packages in R: http://www.sqlservercentral.com/articles/R+Package/145571/
I...
February 16, 2017 at 12:03 am
Hi,
I can not reprocduce the error 🙁 Try to handle the datatypes in report. maybe the image is in wrong format. Can you try that.
best, tomaz
February 12, 2017 at 2:43 am
Glad that this is working.
then just double check all the settings in SSRS, that datasets are correctly set.
and I strongly suggest that you also execute the stored procedure in...
February 11, 2017 at 11:52 am
Very good.
Have you tried to execute only a simple R script that will return a dataframe / table in SSRS?
For example create simple procedure like:
[code...
February 11, 2017 at 6:36 am
cool.
and can you also run the Procedure for SSRS and the code for powerBI?
including the one where you are referring to the ggplot2 package?
February 11, 2017 at 5:12 am
Viewing 15 posts - 1 through 15 (of 28 total)