A tour of the Execute Package Task
Introduces modular programming with the Execute Package task, and shows bi-directional parameter passing.
2019-05-07 (first published: 2014-07-24)
1,922 reads
Introduces modular programming with the Execute Package task, and shows bi-directional parameter passing.
2019-05-07 (first published: 2014-07-24)
1,922 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...
When you create an item in Microsoft Fabric (a notebook, a lakehouse, a warehouse,...
Comments posted to this topic are about the item Why you should avoid Implicit...
please help. Do they know if the use of try and catch for error...
Hola saben si el uso de begin try y catch puede producir bloqueos en...
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