SSIS: Using a Script Component as a substitute OLEDB Destination
I developed an SSIS package that loads invoices, statements, pro-formas, etc. into a SQL Server table. The invoices are .pdf...
2010-11-05
633 reads
I developed an SSIS package that loads invoices, statements, pro-formas, etc. into a SQL Server table. The invoices are .pdf...
2010-11-05
633 reads
I developed an SSIS package that loads invoices, statements, pro-formas,
etc. into a SQL Server table. The invoices are .pdf files and the business
required that no identical documents...
2010-11-05
220 reads
I developed an SSIS package that loads invoices, statements, pro-formas, etc. into a SQL Server table. The invoices are .pdf files and the business required that no identical documents...
2010-11-05
15 reads
Since I designed the Enhanced Threading Framework (ETF) I am always looking
to improve it. Status quo is not for me. I decided to take on the 'queue'
part...
2010-07-17
16 reads
Since I designed the Enhanced Threading Framework (ETF) I am always looking to improve it. Status quo is not for...
2010-07-17
695 reads
Since I designed the Enhanced Threading Framework (ETF) I am always looking to improve it. Status quo is not for me. I decided to take on the 'queue' part...
2010-07-17
7 reads
I've been toying with the idea of using a file as a queue instead of a database table for use...
2010-07-06
480 reads
I've been toying with the idea of using a file as a queue instead of a database table for use with my Enhanced Threading Framework. This has been challenging...
2010-07-06
3 reads
I've been toying with the idea of using a file as a queue instead of a database table for use with my Enhanced Threading Framework. This has been challenging...
2010-07-06
9 reads
A guest editorial from Josef Richberg, winner of the Exceptional DBA contests in 2009.
2010-06-30
264 reads
By Steve Jones
We had an interesting discussion about deployments in databases and how you go forward...
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
A while back I wrote a quick post on setting up key mappings in...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
Comments posted to this topic are about the item Creating JSON III
Comments posted to this topic are about the item Testing is Becoming More Important
In a SQL Server 2025 table, called Beer, I have this data:
BeerIDBeerName 1Becks 2Fat Tire 3Mac n Jacks 4Alaskan Amber 8KirinI run this code:
SELECT JSON_OBJECTAGG(
BeerID: BeerName )
FROM beer;
What are the results? See possible answers