Viewing 15 posts - 1,891 through 1,905 (of 4,820 total)
November 14, 2017 at 10:19 am
I am creating a new SSRS report.
This report as a chart.
Chart dispalys execution...
November 14, 2017 at 10:10 am
November 14, 2017 at 9:47 am
That's because a trigger does not fire per row, but per query. If you UPDATE multiple rows, the trigger only fires once, and gives you both the inserted and deleted...
November 14, 2017 at 9:36 am
We do limit the searching to only strings that start with what the...
November 14, 2017 at 9:28 am
November 14, 2017 at 9:20 am
Indexing of the usual kind may not help a lot, unless you limit the search capability to always involve characters at the beginning of the string. If that were the...
November 14, 2017 at 9:14 am
Maybe this:SELECT
MAX(CASE WHEN processthreadtype = 'SLOW' THEN ProcessLimit ELSE NULL END) AS [@Slow]
,MAX(CASE WHEN processthreadtype = 'EXPRESS' THEN ProcessLimit ELSE NULL END) AS...
November 14, 2017 at 9:01 am
Have you looked at using the FORMAT function in SQL Server? This might be able to avoid the necessity of having to let CSS convert numeric values to strings, and...
November 14, 2017 at 8:46 am
I have the following tables T1 and T2 linked by ID. ID...
November 14, 2017 at 8:33 am
A couple of things. CHAR(10) is the "new line character", or "LINE FEED" (aka LF) from the old days of teletypes. There was also usually CHAR(13) preceding it, which is...
November 14, 2017 at 8:25 am
Not sure this is ever going to go very fast. Also, using the function that way, while it is an inline table-valued function, the problem is that it's used in...
November 14, 2017 at 8:03 am
Viewing 15 posts - 1,891 through 1,905 (of 4,820 total)