Viewing 15 posts - 31 through 45 (of 96 total)
I get some error on the alias columns;
OUTER APPLY (
SELECT
MAX(CASE...
May 8, 2015 at 12:02 am
Ok. I will look..
But is there any option for a subqeury (COALESCE), CROSS APPLY...
May 7, 2015 at 1:24 pm
Tnx for the quick responds.
Ye it still dont work.. I think Alvin's recommendation makes my qeury not quicker..
Is there a better way to make my query syntax, on which way.
May 7, 2015 at 12:58 pm
It must be like this;
Level 1 Level 2
Level 3 Level 4
Level 5
1 10
100 1001
100100
May 6, 2015 at 5:30 am
I fix this problem with a update storeprocedure;
-- Set to date flags
MERGE DIM.DATE AS target
USING
(
SELECT
DATE.DAY_WID
-- Week
,CASE WHEN DATE.WEEK_CURR_F = 1 AND
DATE.WEEKDAY_NUMBER <= CWN.WEEKDAY_NUMBER THEN 1 ELSE 0 END AS
WTD_CURR_F
,CASE WHEN...
May 6, 2015 at 1:49 am
Give some more information about your tables..
May 5, 2015 at 3:30 am
Read this (http://www.infoworld.com/article/2613700/big-data/amazon-s-redshift-for-big-data-analytics----the-pros-and-cons.html )
April 30, 2015 at 4:55 am
Adam Wilbur (4/21/2015)
If I am understanding your question properly, you might want to look here:https://technet.microsoft.com/en-us/library/aa337169(v=sql.100).aspx]
The link discusses how to setup dependent parameters in SSRS.
https://technet.microsoft.com/en-us/library/aa337169(v=sql.100).aspx WORKING URL
April 23, 2015 at 1:40 am
karim.boulahfa (2/18/2014)
Im compare 2 column to find errors. Now I want only the red color columns.
Im using the following expression;
=iif(Fields!Serial__.Value = Fields!item_sc.Value, "LimeGreen", "Red")
Im using the following SQL...
February 19, 2014 at 1:11 am
yayomayn (2/18/2014)
See the...
February 18, 2014 at 6:42 am
The table incident get deleted en will be filled by this package.
January 22, 2014 at 8:57 am
MysteryJimbo (12/3/2013)
karim.boulahfa (12/3/2013)
MysteryJimbo (12/3/2013)
You're primary key (incident_id) is not set as an identity so you need to insert a unique value since you cannot have...
December 3, 2013 at 10:33 am
MysteryJimbo (12/3/2013)
You're primary key (incident_id) is not set as an identity so you need to insert a unique value since you cannot have a NULL...
December 3, 2013 at 7:07 am
Do you think if I change the Primary table to Null will it fix it ??
And can I make it agian NOT NULL
December 3, 2013 at 5:42 am
Viewing 15 posts - 31 through 45 (of 96 total)