Viewing 15 posts - 1,351 through 1,365 (of 7,614 total)
I think Google has some type of API that does address correcting.
I'd look for that or some other known app to do this. What you're trying to do is way...
August 11, 2021 at 6:19 am
Would it help if I post Capture_Inline_Quality ?
Yeah, we can't anything to improve things without seeing that code.
August 11, 2021 at 1:07 am
DECLARE @first_sales_month date = '20200101'
DECLARE @last_sales_month date = '20201201'
SET @first_sales_month = DATEADD(MONTH, DATEDIFF(MONTH, 0, @first_sales_month, 0)
SET @last_sales_month = DATEADD(MONTH, DATEDIFF(MONTH, 0, @last_sales_month, 0)
SELECT
...
August 9, 2021 at 7:35 pm
I suggest you always explicitly set XACT_ABORT, either ON or OFF. After that, you just need to understand the implications of the XACT_ABORT setting.
If it's OFF, you may have parts...
August 9, 2021 at 7:23 pm
SQL creates a table entry for all db backups.
Look in table "msdb.dbo.backupset" to find the lastest full backup datetime for each db, and link to table "msdb.dbo.backupsetfamily" to find the...
August 6, 2021 at 6:19 pm
You'd want to make sure PAGE compression was actually appropriate for each specific table first. In certain cases, page compression doesn't do enough good to make it worth SQL's effort...
August 5, 2021 at 3:17 pm
Yeah, those scalar ops can be ignored as far as performance goes, as long as they aren't repeated a million times or so.
August 4, 2021 at 8:15 pm
I would think the subquery would (almost) certainly be able to take advantage of the fact that the query only needs to lookup a single Shipment_No, rather than processing all...
August 4, 2021 at 8:06 pm
If you don't need the parameters, or they require too much overhead to log, then don't log them.
Just capture the start time, as a datetime2, and the proc name (or...
August 4, 2021 at 5:19 pm
Thanks for that, now I'm clear.
Yeah, I think the first query you posted should do that.
As to performance, make sure the s and p tables have an index...
August 4, 2021 at 5:02 pm
Thanks for that, now I'm clear.
Yeah, I think the first query you posted should do that.
As to performance, make sure the s and p tables have an index on Shipment_No...
August 4, 2021 at 4:42 pm
If I understand your requirements correctly, the code below will do what you want.
As to performance, make sure the s and p tables have an index on Shipment_No...
August 4, 2021 at 3:58 pm
If I understand your requirements correctly, the code below will do what you want.
As to performance, make sure the s and p tables have an index on Shipment_No and that...
August 4, 2021 at 3:40 pm
A single column with all of the parameters? Could be bad idea, potentially lots of overhead, depending on how it's done.
.
The parms and values where concatenated into...
August 3, 2021 at 9:53 pm
Viewing 15 posts - 1,351 through 1,365 (of 7,614 total)