Viewing 15 posts - 181 through 195 (of 926 total)
Good question, as this behavior is expected, same for NCHAR/CHAR as well.
-- For NCHAR
SELECT TRY_CONVERT(NCHAR(1), 234523)
Result :
----
NULL
(1 row(s) affected)
-- For CHAR
SELECT TRY_CONVERT(CHAR(1), 234523)
Result :
----
*
(1 row(s) affected)
Thanks for sharing...
April 21, 2016 at 12:19 am
In Reporting Services, Expression can contain calls to nested aggregate functions with the following exceptions and conditions:
1. Scope for nested aggregates must be the same as, or contained by, the...
April 1, 2016 at 4:41 am
Koen Verbeeck (3/15/2016)
The answer "it's confusing" should be correct as well 😀
+1
March 15, 2016 at 3:25 am
thanks for the question Steve. that a very handy feature.
March 3, 2016 at 3:12 am
Nice question Steve, a very good reminder i almost got it wrong but the inner voice came at the right time 😉
March 2, 2016 at 12:48 am
Its not an issue really to inherit SP most of the guys have worked on inherited code. The thing what you are willing to make it better. So i would...
February 25, 2016 at 11:22 pm
February 25, 2016 at 12:06 am
Well this code is making a Dynamic Query based upon the parameter(s) value and if you want to check whats is making in the end. In the end of the...
February 24, 2016 at 10:54 pm
Seems to me that you are using Dimension table from your DW and joining them with a table / view of a staging table. So means no direct relation with...
February 24, 2016 at 10:49 pm
Nice and easy question. Good to see these kind of question.
basics man basic 😉
Thanks for sharing
February 16, 2016 at 11:02 pm
Nice question. A very good reminder. Thanks for sharing.
February 16, 2016 at 10:59 pm
Of course u can like this.
DECLARE @start_date DATETIME
DECLARE @end_date DATETIME
SET@start_date = '2005-01-01'
SET@end_date = DATEADD(yy, DATEDIFF(yy,0,getdate()) + 1, -1)
;
WITH
E(n) AS(
Select 0 AS n unionall
Select 0 AS...
January 29, 2016 at 4:53 am
Good question. Thanks for sharing Gary.
Because Count(-100) and Count(1) are the same thing doesn't it. 🙂
January 25, 2016 at 10:41 pm
Viewing 15 posts - 181 through 195 (of 926 total)