Viewing 15 posts - 1,246 through 1,260 (of 8,760 total)
Recently we had an issue with Integration services, when disabling TLS protocol at server...
July 26, 2018 at 12:23 am
Here is a more efficient way as it eliminates 3 out of 4 sort operators found in the ROW_NUMBER solution's execution plan.
😎
USE...
July 26, 2018 at 12:11 am
No need for a cursor here, simply filter the set first and then unpivot it.
😎
Here is an example
USE TEEST;
GO
SET NOCOUNT...
July 25, 2018 at 8:55 pm
July 25, 2018 at 9:47 am
Apart from the OP's problem already being solved with no relation to the majority of the subsequent thread, I think there is time for someone to write up the ever...
July 24, 2018 at 10:20 am
July 24, 2018 at 9:00 am
On the float vs numeric, for the purpose of calculating geographical distances, float is the correct data type IF the correct calculation methods are used, which by the way, expect...
July 24, 2018 at 2:37 am
July 24, 2018 at 12:54 am
Receiving attached Error while scheduling database backup with multiple backup files.
Job was working fine till...
July 21, 2018 at 8:20 am
An alternative to Jeff's fine solution
😎
USE TEEST;
GO
SET NOCOUNT ON;
SELECT
t3.data AS ORIGINAL_INPUT
,PARSENAME(REPLACE(PARSENAME(REPLACE(t3.data,'^','.'),1),'|','.'),2) AS DESIRED_VALUE
FROM (VALUES
('Abcdefghi^4|2344')
July 21, 2018 at 8:15 am
This is interesting, only the first execution of the test code fails after changing the COMPATIBILITY_LEVEL, consequent executions work fine.
😎
The errors produced are:
July 21, 2018 at 7:34 am
Thanks for the question Steve.
😎
The XML indices are very "interesting" when it comes to performance, let's say that the impact can be somewhat unexpected😉
July 21, 2018 at 7:01 am
Viewing 15 posts - 1,246 through 1,260 (of 8,760 total)