Viewing 15 posts - 3,391 through 3,405 (of 3,957 total)
vinu512 (6/18/2012)
--Creating Temporary Table
CREATE TABLE #Test
(
DateTimeStamp datetime,
Value int
)
--Inserting Sample Data
INSERT INTO #Test SELECT '2012-06-15 16:00:00.000',4
INSERT INTO #Test SELECT '2012-06-15 2:05:00.000',5
INSERT INTO #Test...
June 18, 2012 at 12:26 am
That's because I didn't notice that Horse is the exception where it should be < while the others are greater than.
You can change the logic on the INNER JOIN to...
June 17, 2012 at 10:04 pm
etirem (6/17/2012)
But can I get the results without using XML and pass them as variables as below.
Presumably so but IMHO it is messier.
Personally, I like to pass as...
June 17, 2012 at 8:21 pm
Like this:
DECLARE @Result1 NVARCHAR(100),
@ResultValue1 NVARCHAR(100),
@Result2 NVARCHAR(100),
@ResultValue2 NVARCHAR(100),
@Result3 NVARCHAR(100),
@ResultValue3 NVARCHAR(100),
@Result4 NVARCHAR(100),
@ResultValue4 NVARCHAR(100)
SET @Result1 = 'Cat'
SET @ResultValue1 = 200--(Greater Than...
June 17, 2012 at 8:10 pm
etirem (6/17/2012)
June 17, 2012 at 8:07 pm
Thomas Stringer (6/17/2012)
June 17, 2012 at 8:00 pm
etirem (6/17/2012)
I need to pass the values in SSRS report for the parameters. And here you are hardcoding the required values into #pTable but need to pass them. Please help.
I...
June 17, 2012 at 7:56 pm
No need to pass 4 parameters. Below, I haven't created your SP but have given you everything you need to do so.
DECLARE @XML1 XML, @XML2 XML
IF object_id ('Tempdb..#pTable') IS...
June 17, 2012 at 7:33 pm
I believe that this will also produce satisfactory results:
;WITH CTE AS (
SELECT DateTimeStamp, Value
,n=ROW_NUMBER() OVER (
...
June 17, 2012 at 7:05 pm
On the other hand, perhaps the solution is as simple as this:
DECLARE @t TABLE (column1 VARCHAR(20))
INSERT INTO @t
SELECT 'p = 30'
UNION ALL SELECT 'q = 50'
UNION ALL SELECT 'r =...
June 17, 2012 at 6:38 pm
Lowell (6/15/2012)
dwain.c (6/14/2012)
Lowell - Another nice learning experience from you. That's now 2 in as many days!
I see this was introduced in SQL 2005. Any idea if it...
June 15, 2012 at 5:59 am
Lynn Pettis (6/15/2012)
Not running your code, but what do you return if the mobility indicator is not 1? The OP indicated that it should be blank.
Plus, I find the...
June 15, 2012 at 1:27 am
Kingston Dhasian (6/15/2012)
dwain.c (6/15/2012)
Kingston Dhasian (6/15/2012)
dwain.c (6/15/2012)
Jeez Kingston, you've let the cat out of the bag!!Actually you don't need to do a JOIN of any sort.
Yes, the OP's statement actually...
June 15, 2012 at 1:23 am
My findings were overall (multiple runs) about 3% decrease in execution time on a single UNPIVOT. CPU savings were about 30% though.
Double UNPIVOT was 30% and 30%.
June 15, 2012 at 1:16 am
Kingston Dhasian (6/15/2012)
dwain.c (6/15/2012)
Jeez Kingston, you've let the cat out of the bag!!Actually you don't need to do a JOIN of any sort.
Yes, the OP's statement actually made us feel...
June 15, 2012 at 1:12 am
Viewing 15 posts - 3,391 through 3,405 (of 3,957 total)