Viewing 15 posts - 5,371 through 5,385 (of 10,144 total)
yuvipoy (11/5/2012)
i have used another way like
DECLARE @input varchar(4000);
DECLARE @sql NVARCHAR(MAX)
select @input='101011123'
SELECT @sql = ISNULL(@SQL+N','+CHAR(10),'') +
...
November 6, 2012 at 6:40 am
DECLARE
@MyInput VARCHAR(8000),
@MyOutput VARCHAR(8000)
SELECT
@MyInput = '101011123',
@MyOutput = ''
;WITH MyTable (startid, Length) AS (
SELECT 1,1 UNION ALL
SELECT 2,1 UNION ALL
SELECT 3,1 UNION ALL
SELECT 4,2 UNION ALL
SELECT 6,3
)...
November 6, 2012 at 2:58 am
yuvipoy (11/4/2012)
i need to split the sting based on my statid & endid
startid, endid
1,1
2,1
3,1
4,2
6,3
which needs to split something like
1,1---->1 starting...
November 5, 2012 at 2:13 am
Work on the function in isolation from the rest of the code. It's a rows to columns transformation using a well-known cheat;
SELECT @r = ISNULL(@r+'/', '')
+ DH.DESCRIPTION + '...
November 2, 2012 at 7:42 am
Look up RTRIM() in Books Online.
Check the datatype of the column 'name' - is it CHAR()? Sounds like it should be VARCHAR().
November 2, 2012 at 7:29 am
Materalise the ORDER BY expression in the output to see what's happening:
select top 300 -- widen the range to observe the effect of the ORDER BY
OrderBy = str(isnull(@SortFieldIndex,2)) + @OrderBy,...
November 2, 2012 at 7:23 am
yuvipoy (11/1/2012)
startid, endid SplitLayout
startid, endid
1,1
2,1
3,1
4,2
6,3
9,1
10,5
15,4
19,3
22,4
Startid = will start from 1 and will add endpoint for second row 1+1 =2 will be starting point for second row...
November 1, 2012 at 7:53 am
28.kanikasoni (11/1/2012)
I had used 5 queries and union their result then appllied order by clause .but order by doesn't work result comes same every timeplz provide solutionnd
Simplify your model. Pick...
November 1, 2012 at 7:52 am
Mad-Dog (11/1/2012)
Hi,is there any quick way to find the problem in this query?
the error is:string or binary data would be truncated
the query:
exec sp_executesql
Why are you using dynamic sql for...
November 1, 2012 at 7:40 am
sqldba_newbie (10/31/2012)
ChrisM@Work (10/31/2012)
sqldba_newbie (10/28/2012)
my bad...i have updated the code now...thanksWhere? Without knowing how #sid is populated, it's impossible to do what you are asking.
CREATE TABLE #Sid
...
October 31, 2012 at 1:30 pm
There’s your problem. You’re only updating a maximum of a few tens of thousands of rows in the target table, but the source – now rejigged as a SELECT for...
October 31, 2012 at 9:20 am
sqldba_newbie (10/28/2012)
my bad...i have updated the code now...thanks
Where? Without knowing how #sid is populated, it's impossible to do what you are asking.
October 31, 2012 at 8:09 am
How many rows are returned by the SELECT version of the first update in your script?
SELECT PatientKey = P.PatientKey
, AgeKey = PM.AgeKey
, GenderKey = P.GenderKey
, GenderCode =...
October 31, 2012 at 8:03 am
-- formatted original
select distinct
t1.ServerName,
t1.[Application ID],
t1.[Application Name],
t2.VP1,
T2.VP2,
T2.SVP,
T2.[DC2015 Move Group],
T1.[System Type],
T3.Line,
-- defines 1 column
AppServerSource = (
Select -- returns 3 columns
IsNull(t1.ServerName,t2.ServerName) as ServerName,
IsNull(t1.[Application...
October 30, 2012 at 3:54 am
chandan.kumar (10/30/2012)
Can you please check below query -
SELECT c.*, h.*
FROM #CONTACT c
INNER JOIN (
SELECT Accountno, ROW_NUMBER() OVER(PARTITION BY accountno ORDER BY lastdate) Rownum ,RECID FROM #History
GROUP BY...
October 30, 2012 at 3:41 am
Viewing 15 posts - 5,371 through 5,385 (of 10,144 total)