Viewing 15 posts - 106 through 120 (of 2,006 total)
Sebastian Zeller (8/7/2014)
(If not it's at least...
August 7, 2014 at 7:42 am
patla4u (8/7/2014)
Is there any one can help ??
Hey there!
It'd be great if you could have a read of this (http://www.sqlservercentral.com/articles/Best+Practices/61537/)[/url], then set up some sample data, DDL and...
August 7, 2014 at 7:25 am
With the limited information you've given us to go on here, maybe parameter sniffing issue?
Take a look at this three part blog post: -
August 6, 2014 at 5:58 am
PFlorenzano-641896 (8/4/2014)
I'm trying to divide two values from separate rows. Each row is a separate UNION statement.
2014-08-03 00:00:00.000NKBB (N) - Total Offers ...
August 4, 2014 at 2:25 pm
DiabloZA (7/16/2014)
Thank you so much for ALL your help and time in helping me with this issue, God bless you..
I left out a BIG piece of information that the...
July 16, 2014 at 11:37 am
edara1234 (7/16/2014)
I had tried al the replies what i had sent to u,please help me
"All the replies" suggests that there were more than one. There wasn't. I replied, then you...
July 16, 2014 at 8:48 am
DiabloZA (7/15/2014)
Hi Cadavre,I had a feeling that I screwed up somewhere with my post.
Excellent. One little issue, I can't see how "HOURS" could be an INT, judging by the...
July 16, 2014 at 3:04 am
Hey there,
I suspect that the reason no-one has helped you yet is that we don't have any data-types to marry up your sample data with and you haven't explained how...
July 15, 2014 at 2:49 pm
What have you tried?
First, let's stick your XML in a variable so that we can play with it: -
DECLARE @XML XML = '<HOTEL>
<SEQNO>1</SEQNO>
<GRADE>5</GRADE>
<PRODUCT>H</PRODUCT>
...
July 15, 2014 at 9:11 am
ChrisM@Work (7/7/2014)
SELECT TOP 1 *
FROM (
SELECT *, rn = ROW_NUMBER() OVER(ORDER BY c1)
FROM #Test
) d
ORDER BY CASE WHEN c3 = 1 THEN 0 ELSE 1 END, rn
Why does it need...
July 7, 2014 at 7:24 am
ChrisM@Work (7/4/2014)
Please post the definition of function dbo.fn_Nested.
Also the definition of OtherTable please.
July 4, 2014 at 8:47 am
ralu_k_17 (7/4/2014)
I have specified CODEPAGE = 'ACP' and I am trying to import into a varchar column, but I modified it to a nvarchar column also to...
July 4, 2014 at 8:44 am
ralu_k_17 (7/4/2014)
I am trying to insert a csv file into a table using Bulk Insert , but all special(french) characters are not inserted correcly.
Is there a specific code page for...
July 4, 2014 at 8:06 am
info 58414 (7/4/2014)
Now I would like to have:
- If getdate ()...
July 4, 2014 at 7:59 am
Newcomsas (7/4/2014)
I have got two user-defined functions: fn_Top and fn_Nested. The first one, fn_Top, is structured in this way:
CREATE FUNCTION [dbo].[fn_Top]
RETURNS @Results table...
July 4, 2014 at 7:40 am
Viewing 15 posts - 106 through 120 (of 2,006 total)