Workaround Primary Key Violations in SSIS
Before you get much further, please do not use this for every case where you have issues with duplicate rows....
2008-11-26
1,511 reads
Before you get much further, please do not use this for every case where you have issues with duplicate rows....
2008-11-26
1,511 reads
I've been hanging around the SQL PASS Summit this week and came to a realization, I do know something...
I don't...
2008-11-20
438 reads
By James Serra
As I researched and wrote my OpenAI and LLMs blogs (see Introduction to OpenAI...
By Steve Jones
I wrote about getting the Redgate Test Data Manager set up in 10 minutes...
By DataOnWheels
Hey data friends! This one comes from my personal vault (aka backlog of drafts...
Comments posted to this topic are about the item Why you should avoid Implicit...
An error occurred during recovery, preventing the database 'XXXXX' (28:0) from restarting. Diagnose the...
Dear all, I have noticed that a "SELECT * ..." is about 10 time...
The string, listopad, translates to a month name in different languages. If I were to run this code, what values are returned?
DECLARE @yourInputDate NVARCHAR(32) = '28 listopad 2018'; SET LANGUAGE Polish; SELECT CONVERT(DATE, @yourInputDate) AS [SL_Polish]; SET LANGUAGE Croatian; SELECT CONVERT(DATE, @yourInputDate) AS [SL_Croatian]; SET LANGUAGE English;See possible answers