Viewing 15 posts - 1,531 through 1,545 (of 8,760 total)
April 11, 2018 at 9:01 am
April 11, 2018 at 7:36 am
April 11, 2018 at 7:29 am
April 11, 2018 at 7:17 am
Are you trying to eliminate URL encoded characters with the regex pattern in the where clause?
😎
April 11, 2018 at 7:10 am
April 11, 2018 at 5:12 am
Quick thought, change the table from a heap to a clustered index table.
😎
April 11, 2018 at 3:50 am
April 11, 2018 at 2:38 am
This can be simplified to be done in the variable declaration statement.
😎
DECLARE @YEARMONTH CHAR(7) = '2017-06';
DECLARE @PRIORYEARMONTH CHAR(7) = CONVERT(CHAR(7),DATEADD(YEAR,-1,CONVERT(DATE,CONCAT(@YEARMONTH,'-01'),120)),120);
April 11, 2018 at 12:38 am
We want to analyze database ,to find specific list of columns of some tables,...
April 10, 2018 at 6:29 am
I would suggest that you thoroughly analyse the problem before choosing the tools😉
😎
There are several limitations using memory-optimized tables, have a look here, SQL...
April 10, 2018 at 6:19 am
Quick thought, the return value of the TRY_CAST function is not used in the output of the query, maybe Steve should rewrite the query to support the explanation😉
April 10, 2018 at 5:55 am
There are quite few articles and blog posts on the subject, suggest you start with this one.
😎
April 10, 2018 at 5:49 am
Viewing 15 posts - 1,531 through 1,545 (of 8,760 total)