Viewing 15 posts - 181 through 195 (of 8,760 total)
We will need your help in order to be able to help you, so please help us!
😎
It would be greatly appreciated if you could provide the DDL (create table) script,...
December 18, 2022 at 11:51 am
Simple test harness to demonstrate the inefficiency of the string_split method 😉
😎
USE TEEST;
GO
SET NOCOUNT ON;
GO
DECLARE @SAMPLE_SIZE BIGINT = 1000000;
DECLARE @STR_BUCKET VARCHAR(20)...
December 18, 2022 at 11:29 am
Here is a slightly different approach that performs quite well given that only the two delimiter positions needed are used in the output.
😎
USE TEEST;
GO
SET NOCOUNT ON;
GO
DECLARE @TMP...
December 18, 2022 at 10:23 am
Quick question, are you consistently looking for the third value in the string?
😎
Here is a quick suggestion, mind you that there is no guarantee that the ordinals are correct 😉
December 14, 2022 at 5:52 pm
Is the OS 32 or 64 bit and is the installer for the 2012 SQL Express the same architecture?
😎
The only time I use SQL Server 2012 Express these days is...
December 13, 2022 at 3:32 pm
Latency?
I mean, if we assume everything else being equal, latency. Otherwise, it was something else, good, or bad, at one of the locations. Nothing else makes sense.
It is always...
December 13, 2022 at 3:18 pm
You need to rewrite the trigger, get rid of the variables and make it set-based!
😎
What you have here is a SOROW (pronounced Sorrow), Single Only Row trigger, it can only...
December 13, 2022 at 1:24 pm
My first question would be if the IT director had any connection to the local cloud provider 😉
😎
December 13, 2022 at 1:16 pm
Actually around 5.000 tenants. Based on kind of application number of tenants in the worst scenario can reach 10.000.
Scope of application is related only to a very specific kind...
December 9, 2022 at 1:56 pm
RTM is an interesting TLA, in my books it normally means Return To Manufacturer 😉
😎
Joking apart, there are some interesting changes in this version, now let us see how...
December 8, 2022 at 5:53 pm
Quick question, how many tenants are you hosting and will that number change in the foreseeable future?
😎
December 8, 2022 at 12:58 pm
Quick suggestion, use the appropriate geography spatial data type rather than long/lat columns, makes the calculation a lot easier 😉
😎
December 7, 2022 at 6:14 pm
Quick question, do the affected reports' queries have anything particular in common?
😎
So far you have done what I would do in such a situation, next step is to look at...
December 7, 2022 at 11:34 am
We will need your help in order to be able to help you, so please help us!
😎
It would be greatly appreciated if you could provide the DDL (create table) script,...
November 30, 2022 at 11:25 am
Viewing 15 posts - 181 through 195 (of 8,760 total)