Learn how to create and work with DAX, from an established expert.
Url: https://docs.microsoft.com/en-us/power-bi/guided-learning/introductiontodax
Praveen's CTO Blog
Learn how to create and work with DAX, from an established expert.
Url: https://docs.microsoft.com/en-us/power-bi/guided-learning/introductiontodax
Read more here – https://social.technet.microsoft.com/wiki/contents/articles/19898.differences-between-olap-rolap-molap-and-holap.aspx
Here is a good link where the concept of Blockchain is explained simply:
https://www.datasciencecentral.com/profiles/blogs/blockchain-basics
Compatibility: v5.x
$zipfile = "https://www..../xyz/test.zip"
add-type @"
using System.Net;
using System.Security.Cryptography.X509Certificates;
public class TrustAllCertsPolicy : ICertificatePolicy {
public bool CheckValidationResult(
ServicePoint srvPoint, X509Certificate certificate,
WebRequest request, int certificateProblem) {
return true;
}
}
"@
$AllProtocols = [System.Net.SecurityProtocolType]'Ssl3,Tls,Tls11,Tls12'
[System.Net.ServicePointManager]::SecurityProtocol = $AllProtocols
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
#$res = Invoke-WebRequest -Uri $zipfile
$webRequest = [System.Net.HttpWebRequest]::Create($zipfile)
$webRequest.Method = "GET"
[System.Net.HttpWebResponse]$webResponse = $webRequest.GetResponse()
Write-Output $webResponse.LastModified
Compatibility: v5.x
If you are a .NET developer then you are already familiar with this code
$connectionString = "Data Source=localhost;Integrated Security=SSPI;Initial Catalog=AdventureWorks2016CTP3"
$dt = New-Object System.Data.DataTable
$da = New-Object System.Data.SqlClient.SqlDataAdapter("SELECT TOP 10 * FROM Person.Address", $connectionString)
$da.Fill($dt)
Write-Output $dt.Rows[0]["AddressLine1"]
# or
ForEach ($dr in $dt.Rows) {
Write-Output $dr["AddressLine1"]
}