Viewing 11 posts - 1 through 11 (of 11 total)
can u please explain how it got fixed ..
June 30, 2014 at 6:03 pm
i also have the same issue , for the changes which you said is not wrking
Shaheer
August 22, 2013 at 2:50 am
any idea abt the solutions..
April 19, 2013 at 8:34 am
USE AdventureWorks
GO
DECLARE @listStr VARCHAR(MAX)
SELECT @listStr = COALESCE(@listStr+',' ,'') + Name
FROM Production.Product
SELECT @listStr
October 8, 2012 at 9:40 am
XQuery supports four string manipulation functions:
concat() Helps concatenate two or more strings.
contains() Helps determine whether or not a string specified as the...
June 7, 2012 at 1:49 am
Please check the Partition Source Queries..Check whether its taking data from Feb only or Jan as well.
regards
Bornsql
April 25, 2011 at 3:22 am
Please use this link
Regards
born sql
August 27, 2010 at 12:16 am
Hi
You should put the create script like this
Create Table MyTable( mainkey int not null identity (-1,-1))
Then only you will get correct answer.
i got -1,0,1 ,but not yet get...
June 28, 2010 at 4:06 am
Hi how about this code whether this will work fine or not
DECLARE @tmpstr2 Varchar(MAX)
SELECT @tmpstr2=replace(OriginalString, char(10) + char(13), '') FROM @demo
SELECT @tmpstr2=replace(@tmpstr2,' ','|')
SELECT @tmpstr2=replace(@tmpstr2,'|','')
SELECT @tmpstr2
November 16, 2009 at 10:39 pm
[font="Arial Narrow"]
Hi
can you please specify the steps to how to partition the file in AS 2005
[/font]
September 29, 2009 at 5:12 am
Viewing 11 posts - 1 through 11 (of 11 total)