In SQL Server 2016 heeft Microsoft ons voorzien van tal van nieuwigheden. Naast de talrijke mooie wijzigingen in de SQL Server engine, SSAS en SSRS, is er ook aandacht besteed aan SSIS 2016. Deze verbeteringen staan wat minder in de kijker, maar zijn daarom niet minder de moeite waard.
Als ervaren SSIS-ontwikkelaar word ik zeer blij van de native ondersteuning voor OData4. Die biedt ons namelijk de mogelijkheid om SSIS aan te sluiten op een OData-bron, en OData4-berichten rechtstreeks op te pikken. Daarnaast biedt SQL Server 2016 nu ook de mogelijkheid om de JSON-inhoud om te zetten naar relationele data, zodat u ze verder kan verwerken in uw OLTP of DWH. Output van relationele data naar JSON is uiteraard ook mogelijk. Maar voor ik u verder rond de oren sla met technische termen, volgt eerst even een korte uitleg over OData4 en JSON.
OData staat voor Open Data Protocol. Het is een communicatieprotocol dat in 2007 initieel werd opgestart door Microsoft, maar inmiddels een internationale standaard is geworden. OData-pakketten zorgen dat computersystemen onderling communiceren. Ze aanwezig op het internet of uw interne netwerk, en connecteren bijvoorbeeld ook tussen uw browser en een webserver. Een voorbeeld: u wil een midweekje Tenerife boeken bij uw favoriete reisoperator. Uw browser stuurt een OData-pakket naar de webserver van de reisorganisatie om te informeren naar prijs en beschikbaarheid. De webserver antwoordt vervolgens met een OData-pakket dat de prijzen van uw selectie bevat.
JSON staat voor Javascript Object Notation en is een gestandaardiseerd gegevensformaat dat data-objecten gebruikt als tekst, die bestaan uit een of meerdere attributen met bijhorende waarde. Als u zich OData inbeeldt als een vrachtwagen, dan dient u JSON te zien als de lading tomaten.
Een voorbeeld:
{
"@odata.context": "http://services.odata.org/V4/OData/OData.svc/$metadata#Products",
"value": [
{
"ID": 0,
"Name": "Meat",
"Description": "Red Meat",
"ReleaseDate": "1992-01-01T00:00:00Z",
"DiscontinuedDate": null,
"Rating": 14,
"Price": 2.5
},
{
"ID": 1,
"Name": "Milk",
"Description": "Low fat milk",
"ReleaseDate": "1995-10-01T00:00:00Z",
"DiscontinuedDate": null,
"Rating": 3,
"Price": 3.5
}
]
}
U hebt in bovenstaand voorbeeld waarschijnlijk twee records gezien in een formaat dat vergelijkbaar is met xml. Als we nu spreken over DataWareHousing, is deze OData4-integratie dan niet vooral een duurdere en hippere vervanging van onze oude getrouwe csv-files waarmee we al decennialang de loads verzorgen? Ik geloof dat er wel degelijk voordelen zijn die het de moeite waard maken om deze aanpak te overwegen, dit zijn de voornaamste redenen.
U zal nu waarschijnlijk opmerken dat dit allemaal ook al mogelijk was in eerder versies van SQL Server, en u heeft gelijk. Het belangrijke verschil is dat u toen gebruik moest maken van custom extensies in SSIS (die u kon downloaden van de MS website). Bovendien werd Odata4 niet ondersteund door SQL Server. Vandaag zijn alle benodigde componenten native aanwezig in SSIS. Hoe makkelijk dit allemaal gaat, ziet u hier:
Onze bron is de Northwind Odata webservice, en onze destination table is een SQL Server 2016 tabel. Het opzetten gaat vlot, en doet u zo:
In de Query options kunt u al een eerste keer filteren op de bron zelf. Dit beperkt de downloadgrootte naar de server. U kunt bijvoorbeeld kiezen om enkel Empoyees te selecteren uit Londen, of updates/ inserts vanaf een bepaalde datum (de laatste load date). Voor het voorbeeld uit Londen gebruiken we de volgende filter: $filter=City eq ‘London’. U kunt ook werken met contains, dat is geen probleem.
Bij de Columns sectie kunt alle kolommen afvinken die u niet nodig heeft. SSIS zal de columns wel nog steeds downloaden, en pas in de component beslist om ze niet verder door te sturen in de pipeline.
Kunt u dan niet rechtstreeks op de bron besluiten om slechts bepaalde kolommen te downloaden? Natuurlijk kan dat. Hiervoor werkt u met het select statement bij de Query Options. In ons geval: $select=EmployeeID, LastName, FirstName, Title, HireDate, Address,City. Maar nu zijn we natuurlijk onze filter kwijt. Met een & kunt u query options aan elkaar koppelen. Bijvoorbeeld: $select=EmployeeID, LastName, FirstName, Title, HireDate, Address, City & $filter=City eq ‘London’.
Een order by is steeds een blocking point in onze ETL, dus het zou leuk zijn mochten we al kunnen sorteren op de bron zelf. Dat kan met Odata. Via de query options gebruikt u het $orderby statement.
Dit is ons finale Query Option Statement:
$select=EmployeeID, LastName, FirstName, Title, HireDate, Address, City & $filter=City eq 'London' & $orderby=HireDate desc
Hieronder ziet u het resultaat van onze preview. We downloadden van onze Odata-bron een beperkt aantal kolommen: enkel met de medewerkers die in Londen wonen, en sorteren aflopend op HireDate. Probeer dat eens met csv-bestand.
Nu dienen we enkel nog te verbinden naar een SQL tabel, en de data stroomt netjes binnen in onze database.
Als afsluiter kunnen we stellen dat Odata een snel, veilig en makkelijk te integreren communicatieprotocol is, en perfect te combineren valt met SSDT en zelfs PowerBI. Odata gaat echter veel breder dan het Microsoft-ecosysteem alleen. Andere grote technologiespelers zoals IBM, Oracle en SAP, maar ook platforms zoals SalesForce en Hadoop bouwden een native integratie van Odata in hun software. Odata is algemeen aanvaard in de data community, en zal nog lange tijd bij ons blijven als open standaard voor communicatie tussen systemen onderling.
Cookie | Duration | Description |
---|---|---|
ARRAffinity | session | ARRAffinity cookie is set by Azure app service, and allows the service to choose the right instance established by a user to deliver subsequent requests made by that user. |
ARRAffinitySameSite | session | This cookie is set by Windows Azure cloud, and is used for load balancing to make sure the visitor page requests are routed to the same server in any browsing session. |
cookielawinfo-checkbox-advertisement | 1 year | Set by the GDPR Cookie Consent plugin, this cookie records the user consent for the cookies in the "Advertisement" category. |
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
CookieLawInfoConsent | 1 year | CookieYes sets this cookie to record the default button state of the corresponding category and the status of CCPA. It works only in coordination with the primary cookie. |
elementor | never | The website's WordPress theme uses this cookie. It allows the website owner to implement or change the website's content in real-time. |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |
Cookie | Duration | Description |
---|---|---|
__cf_bm | 30 minutes | Cloudflare set the cookie to support Cloudflare Bot Management. |
pll_language | 1 year | Polylang sets this cookie to remember the language the user selects when returning to the website and get the language information when unavailable in another way. |
Cookie | Duration | Description |
---|---|---|
_ga | 1 year 1 month 4 days | Google Analytics sets this cookie to calculate visitor, session and campaign data and track site usage for the site's analytics report. The cookie stores information anonymously and assigns a randomly generated number to recognise unique visitors. |
_ga_* | 1 year 1 month 4 days | Google Analytics sets this cookie to store and count page views. |
_gat_gtag_UA_* | 1 minute | Google Analytics sets this cookie to store a unique user ID. |
_gid | 1 day | Google Analytics sets this cookie to store information on how visitors use a website while also creating an analytics report of the website's performance. Some of the collected data includes the number of visitors, their source, and the pages they visit anonymously. |
ai_session | 30 minutes | This is a unique anonymous session identifier cookie set by Microsoft Application Insights software to gather statistical usage and telemetry data for apps built on the Azure cloud platform. |
CONSENT | 2 years | YouTube sets this cookie via embedded YouTube videos and registers anonymous statistical data. |
vuid | 1 year 1 month 4 days | Vimeo installs this cookie to collect tracking information by setting a unique ID to embed videos on the website. |
Cookie | Duration | Description |
---|---|---|
ai_user | 1 year | Microsoft Azure sets this cookie as a unique user identifier cookie, enabling counting of the number of users accessing the application over time. |
VISITOR_INFO1_LIVE | 5 months 27 days | YouTube sets this cookie to measure bandwidth, determining whether the user gets the new or old player interface. |
YSC | session | Youtube sets this cookie to track the views of embedded videos on Youtube pages. |
yt-remote-connected-devices | never | YouTube sets this cookie to store the user's video preferences using embedded YouTube videos. |
yt-remote-device-id | never | YouTube sets this cookie to store the user's video preferences using embedded YouTube videos. |
yt.innertube::nextId | never | YouTube sets this cookie to register a unique ID to store data on what videos from YouTube the user has seen. |
yt.innertube::requests | never | YouTube sets this cookie to register a unique ID to store data on what videos from YouTube the user has seen. |
Cookie | Duration | Description |
---|---|---|
WFESessionId | session | No description available. |