Viewing 10 posts - 1 through 10 (of 10 total)
how to solve this problem
July 12, 2016 at 5:37 am
but my sql server 2008 its show error
Invalid length parameter passed to the RIGHT function.
July 12, 2016 at 5:13 am
Luis Cazares (10/20/2015)
CREATE FUNCTION dbo.RemoveDupes(@string varchar(8000))
RETURNS TABLE AS
RETURN
WITH CTE AS(
SELECT...
October 20, 2015 at 3:09 pm
Luis Cazares (10/20/2015)
You forgot to create the splitter in your system. You need to use it inside the function and call the function using your table.
thanks for your answer ,...
October 20, 2015 at 2:56 pm
Sir, i am junior developer i am learning sql server, your professional i need only help..:crying:
October 20, 2015 at 2:48 pm
Alan.B (10/20/2015)
mr.addikhan (10/20/2015)
Alan.B (10/20/2015)
mr.addikhan (10/20/2015)
its not working 🙁 my tbl name is tblemp column name is empaddress
I would suggest taking what I posted (or what Luis posted if...
October 20, 2015 at 2:41 pm
i am using SQL Server 2008
step 1 : i am create your posted function like this
CREATE FUNCTION dbo.RemoveDupes(@string varchar(8000))
RETURNS TABLE AS RETURN
SELECT NewString =
(
SELECT DISTINCT empaddress+'...
October 20, 2015 at 2:37 pm
Alan.B (10/20/2015)
mr.addikhan (10/20/2015)
its not working 🙁 my tbl name is tblemp column name is empaddress
I would suggest taking what I posted (or what Luis posted if order is...
October 20, 2015 at 2:24 pm
can u please tell me in detail because , its important for me..
i have three column , empid , empname, empaddress
empaddress data :''BLACKHEATH 0AA ...
October 20, 2015 at 2:22 pm
its not working 🙁 my tbl name is tblemp column name is empaddress
October 20, 2015 at 2:16 pm
Viewing 10 posts - 1 through 10 (of 10 total)