Viewing 15 posts - 1 through 15 (of 1,489 total)
I have never done anything with DB2 but maybe something like CData Sync would work.
September 29, 2025 at 8:46 am
Maybe I have not had enough coffee yet, but I am having difficulty understanding how RCSI/MVCC will help with a data extract. Snapshot isolation may help and the issues with...
September 16, 2025 at 7:25 am
France has its own cloud provider:
Cloud Computing & Web Hosting | OVHcloud UK
The problems allegedly are:
1. The documentation, even in French, is poor.
2. The support is worse.
3. Only basic services.
ie...
August 29, 2025 at 9:16 am
It seems strange to do this in a SP; I would be more inclined to have something on an application server and use a more suitable language. (C#)
If you really...
August 27, 2025 at 9:00 am
/* *** Test Data *** */
CREATE TABLE #t
(
Account char(7) NOT NULL
,TransDate date NOT NULL
,TransType char(1) NOT NULL
...
August 26, 2025 at 7:27 am
If you are not using SSIS elsewhere, it may just be simpler to use PowerShell.
1. First create a view of your query. Something like:
SET ANSI_NULLS, QUOTED_IDENTIFIER ON;
GO
USE...
August 4, 2025 at 7:00 pm
I think Databricks is a good option for production at the moment as Fabric is still not mature. Microsoft now has an issues list so hopefully it will be...
July 31, 2025 at 2:44 pm
Hi Ken.
Thanks for this but I don't see how it includes the SUM([value]) in the SELECT statement.
Pete
Your question is unclear so I showed you how to use FIRST_VALUE and...
July 26, 2025 at 6:53 pm
/* *** Test Data *** */
CREATE TABLE #t
(
rn int NOT NULL
PRIMARY KEY
...
July 25, 2025 at 4:51 pm
As a result, I truly hate jargon with every fibre of my being .
Just load this and weave the results into the conversation! I find it amusing when...
July 9, 2025 at 1:30 pm
But can CDC be done if the tables don't have time stamps?
CDC uses the log so does not explicitly require timestamps.
July 1, 2025 at 2:43 pm
I just want to update the values so they appear differently in Job Activity Monitor.
Why not just filter the results for enabled jobs? The Filter button is next to...
July 1, 2025 at 1:50 pm
As to the TOP, you got it backwards.
I have just tried to create a view with an ORDER BY in SQL 2019 and got the following:
Msg 1033, Level...
July 1, 2025 at 1:11 pm
This shows how to connect to a local SQL Server using ADF:
Tutorial: How to access on-premises SQL Server from Data Factory Managed VNet using Private Endpoint
Presumably you would then...
July 1, 2025 at 12:43 pm
Viewing 15 posts - 1 through 15 (of 1,489 total)