This video describes how to display alternate text when there is no data present for the image URL in Power BI.
Friday, July 15, 2022
Thursday, July 14, 2022
Display default image when there is no data present for the image URL in Power BI
This video describes how to display a default image when there is no data present for the image URL in Power BI.
Labels:
Power BI,
power bi desktop,
powerbi,
techbytes
Tuesday, July 12, 2022
Display URL's as images in Power BI
This video describes how to display URL's as images in Power BI.
Labels:
Power BI,
power bi desktop,
powerbi,
techbytes
Friday, July 8, 2022
Connect to Azure Data Lake from Power BI
This video describes how to connect to Azure Data Lake from Power BI.
Download link to Azure Open Datasets:
https://docs.microsoft.com/en-us/azure/open-datasets/dataset-catalog
Labels:
Azure,
azure data lake gen 2,
datalake,
Power BI,
power bi desktop,
powerbi,
techbytes
Wednesday, May 25, 2022
T-SQL to find Server and SQL restart date time
This script comes handy when you would like to find out the Server and SQL services restart times.
DECLARE @SQLServiceRestartDateTime AS VARCHAR(50), @ServerRestartDateTime AS VARCHAR(50) SELECT @SQLServiceRestartDateTime = create_date FROM sys.databases WHERE database_id=2 SELECT @ServerRestartDateTime = CAST(DATEADD(SECOND, (ms_ticks/1000) * -1, GETDATE()) AS datetime) FROM sys.dm_os_sys_info SELECT @SQLServiceRestartDateTime AS [SQL Service Start DateTime], @ServerRestartDateTime AS [Server Start DateTime]
Subscribe to:
Posts (Atom)