Viewing 15 posts - 76 through 90 (of 394 total)
Stuart Davies (2/25/2015)
SQLRNNR (2/25/2015)
Ed Wagner (2/25/2015)
BWFC (2/25/2015)
Ed Wagner (2/25/2015)
laurie-789651 (2/25/2015)
Ed Wagner (2/25/2015)
djj (2/25/2015)
Ed Wagner (2/24/2015)
SQLRNNR (2/24/2015)
fourSquare
Cube
Dimension
Declare
Decree
Absolute
Resolute
Desk
Raven (obtuse - I know)
Dun
February 25, 2015 at 8:01 am
Ed Wagner (2/25/2015)
djj (2/25/2015)
Ed Wagner (2/24/2015)
SQLRNNR (2/24/2015)
fourSquare
Cube
Dimension
Declare
February 25, 2015 at 5:58 am
Ed Wagner (2/24/2015)
crookj (2/24/2015)
djj (2/24/2015)
Ed Wagner (2/24/2015)
BWFC (2/24/2015)
djj (2/24/2015)
Ed Wagner (2/23/2015)
SQLRNNR (2/23/2015)
roofTop
Tip
Dump
Core
Apple
Mortimer (Who's your friend?)
Time
Zone
February 24, 2015 at 8:45 am
Good. Glad you got it sorted.
I meant to suggest using a CTE like this to get the base data using your original query:
;WITH CTE_Base_Data AS
(
Select S.number,
SStatus.name stat,
Sshis.StartDate
From supportcall S
JOIN...
February 20, 2015 at 10:29 am
Try this:
--== TEST DATA ==--
IF OBJECT_ID('tempdb..#TEMP') IS NOT NULL DROP TABLE #TEMP;
CREATE TABLE #TEMP (Number Int, Stat Varchar(10), StartDate DateTime);
INSERT #TEMP VALUES (17061, 'New', '2015-01-06 09:01:48.843');
INSERT #TEMP VALUES (17061, 'Assigned',...
February 19, 2015 at 8:32 am
Try this:
--== TEST DATA ==--
IF NOT OBJECT_ID('tempdb..#Temp') IS NULL DROP TABLE #Temp;
CREATE TABLE #Temp (SRC Int, IP_REF Int);
INSERT #Temp VALUES (1, 1);
INSERT #Temp VALUES (1, 1);
INSERT #Temp VALUES (1, 1);
INSERT...
December 16, 2014 at 7:23 am
If you're using the sys tables (i.e. views) as source of the table names, use the columns view to identify the required column name & store this along with the...
June 25, 2014 at 3:41 am
What do you mean by "other Columns of the months "?
What is the problem exactly?
June 24, 2014 at 8:47 am
Can you move the calculations for the asterisk into the dataset, i.e. into the SQL? If so, you could perhaps create a second dataset sharing the logic to hold only...
June 24, 2014 at 8:40 am
If you post some sample data & expected results you'll likely get more response.
You can use recursive CTEs to show hierarchies.
For example:
http://blogs.msdn.com/b/simonince/archive/2007/10/17/hierarchies-with-common-table-expressions.aspx
June 23, 2014 at 3:14 am
ndiro (1/9/2014)
I know that it's not a standard feature of SSRS but i'm looking for a workaround. Any suggestions?
It is a standard feature:
Properties window / Alignment / Text Align =...
January 9, 2014 at 4:46 am
You could truncate the table first, then load the data.
Alternatively
;WITH CTE AS
(
SELECT *
,RN = DENSE_RANK() OVER (ORDER BY FileID DESC)
FROM [dbo].[forecast_data]
)
DELETE CTE
WHERE RN > 1
(This actually...
January 6, 2014 at 1:57 pm
Viewing 15 posts - 76 through 90 (of 394 total)