Viewing 15 posts - 46 through 60 (of 229 total)
I agree with all your points. It's just that off-hand, even though it is in BOL, the net result SEEMS like a side effect. (By "implicit" I meant not overtly...
May 30, 2016 at 11:08 am
A new function is available: FORMAT
declare @d datetime = '2016-05-01';
SELECT FORMAT( @d, 'dd/MM/yyyy', 'en-US' ) AS 'DateTime Result'
SELECT FORMAT( @d, 'dd', 'en-US' ) AS 'DateTime Result'
- BUT:
Steer clear away...
May 30, 2016 at 9:42 am
Not certain I understand what you mean.
If you want to construct an extra column in a tablix, just add the column then right-click and select Expression. (as you would if...
May 30, 2016 at 9:29 am
Jeff Moden (5/29/2016)
There's no need to join back to the table to do the DELETE. You can delete from the table by deleting from the CTE.[/code]
Bringing this point up...
May 30, 2016 at 8:45 am
George Vobr (5/27/2016)
May 30, 2016 at 8:34 am
Brian J. Parker (6/9/2015)
But I don't want to "consult the oracle"... I want to consult the SQL Server. *rimshot* :rolleyes:
Hilarous ! 😀
May 30, 2016 at 8:12 am
IF you have ascertained that you are indeed working off the exact same database in SSMS and in your SSRS report, move on to step 2:
Whittle down (simplify) your T-SQL...
May 26, 2016 at 12:22 pm
Got the answer but misread the question - did not notice the [font="Courier New"]varchar(MAX)[/font] vs [font="Courier New"]varchar(5000)[/font] !
Lesson repeated: when looking at T-SQL do not overlook details.
May 26, 2016 at 12:03 pm
alex_martinez (5/24/2016)
j-1064772 , any code imporovement is always welcome. Thank you.
🙂
May 24, 2016 at 3:27 pm
A suggestion - probably nit-picking here ...
FROM OAPLUS7FLP.GLMST, OAPLUS7FLP.GLDET
WHERE OAPLUS7FLP.GLMST.GMIACN = OAPLUS7FLP.GLDET.GTIACN
is the "old" way of doing things.
The "modern" way is
FROM OAPLUS7FLP.GLMST
INNER JOIN OAPLUS7FLP.GLDET ON OAPLUS7FLP.GLDET.GTIACN = OAPLUS7FLP.GLMST.GMIACN
Better yet,...
May 24, 2016 at 2:23 pm
Steve Jones - SSC Editor (5/13/2016)
j-1064772 (5/5/2016)
If they only seek a suit to act as yes-man pushing down the ladder...
May 13, 2016 at 12:05 pm
Iwas Bornready (5/11/2016)
Toreador (5/10/2016)
It's also deprecated in SQL2016...What? I've never used it and it's already going away? Maybe that's why.
😎
May 11, 2016 at 7:21 am
Sean Lange (5/10/2016)
j-1064772 (5/10/2016)
But I still feel cheated on being denied a bragging point. There is nothing wrong with saying there is...
May 10, 2016 at 10:10 am
I too learned something about variable length decimal option.
But I still feel cheated on being denied a bragging point. There is nothing wrong with saying there is no such thing...
May 10, 2016 at 9:45 am
Viewing 15 posts - 46 through 60 (of 229 total)