Viewing 15 posts - 136 through 150 (of 1,418 total)
Ideas?
Stop using maintenance plans - they have too many 'features'.
Try:
or:
https://www.minionware.net/products/backup/
August 28, 2023 at 7:20 pm
SQL Server CXPACKET Wait (sqlskills.com)
What is causing waittype CXSYNC_PORT and what to do about it? - Microsoft Q&A
August 20, 2023 at 10:27 am
You still have a typo in your test data in #t1! I am going to assume outtime on 2023-06-06 is 2023-06-06 23:38:44 and not 2023-06-05 23:38:44.
The following works with your...
August 12, 2023 at 12:35 pm
Bing gave me this:
Capture Linked server queries using SQL Extended Events - Stack Overflow
August 8, 2023 at 6:38 pm
As your latest data seems to have no missing times, try something like:
WITH DateList
AS
(
SELECT T.EmployeeId, X.PunchTime
...
August 8, 2023 at 2:25 pm
Are you sure this is a table and not a view? A table like this is poor design.
With the given data, just double the number of rows, with CROSS APPLY,...
August 8, 2023 at 1:19 pm
>>/* *** Test Data - which, if you want answers, you will provide in future */
August 8, 2023 at 11:35 am
I would speak to your network people. It smells like DNS and/or Kerberos.
ps Also, double check you have no SQL Server alias on you application servers.
August 8, 2023 at 10:20 am
With:
/* *** Test Data - which, if you want answers, you will provide in future */
SET ANSI_NULLS, QUOTED_IDENTIFIER, ANSI_PADDING ON;
GO
CREATE TABLE #t
(
EmployeeId...
August 8, 2023 at 9:54 am
I think Azure SQL DB allows External Tables but am unsure if that will get you as far as AWS.
It might be better to do the queries directly from the...
August 8, 2023 at 7:01 am
DECLARE @FilePath ...
August 3, 2023 at 10:53 am
The reason why I'm calling it is that there's near-zero adoption of 2022 development servers.
I play with SQL2022 on Docker Desktop - maybe other people are doing the same....
July 27, 2023 at 4:10 pm
Using a sequence, can a process get a set of 5000 values
How to return multiple sequence numbers with sp_sequence_get_range - Simple Talk (red-gate.com)
July 13, 2023 at 7:40 am
Try checking the ODBC data sources with odbcad32.exe. The 64bit one will be system32 and the 32bit one will be in syswow64.
The ODBC data sources might be referenced by the...
July 11, 2023 at 6:32 pm
I would like an option that it will not try to backup the log when there is no full. But I can't find it.
I think Ola Hallengren's Maitenance...
July 10, 2023 at 2:26 pm
Viewing 15 posts - 136 through 150 (of 1,418 total)