Viewing 7 posts - 1 through 7 (of 7 total)
Thanks for the response, I bet your correct -- comment
September 25, 2024 at 3:00 pm
Thank you for pointing me to a solution.
August 28, 2024 at 2:31 pm
still no luck error: AMP; Load Room' is not valid
LOCATION=Bridge%20&%20Load%20Room
May 1, 2023 at 8:27 pm
I have a hyper link to an ssrs report that is created from a DB call. One of the parameters has an & in it and causing a failure. The...
May 1, 2023 at 7:47 pm
This might work, Tks
February 1, 2021 at 9:05 pm
January 21, 2021 at 8:39 pm
found my own solution
SELECT dbo.GetEnglishDate('Portuguese', '01-ago-2014')
CREATE FUNCTION GetEnglishDate
(@language VARCHAR(25), @DateString VARCHAR(30))
RETURNS VARCHAR(30)
AS
Begin
--DECLARE @language VARCHAR(25)
--DECLARE @DateString VARCHAR(30)
DECLARE @langMonths VARCHAR(100)
DECLARE @engMonths VARCHAR(100)
DECLARE @frnMonth VARCHAR(3)
DECLARE @engMonth VARCHAR(3)
--SET @language = 'Portuguese'
--SET @DateString =...
July 31, 2014 at 3:01 pm
Viewing 7 posts - 1 through 7 (of 7 total)