Azure CLI
Check version: az —version
Storage
AzCopy - for high performance copies in/out of the cloud - https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10
Amazon Ad
Featured Post
Showing posts with label microsoft. Show all posts
Showing posts with label microsoft. Show all posts
Friday, July 05, 2019
Monday, December 17, 2018
Display Last Records from a Microsoft SQL Server Database
/****** Display Last 5 Records in MS SQL Database ******/
SELECT TOP 5 [ID]
,[ts]
,[quote]
,[author]
,[category]
FROM [DB1].[dbo].[quotes]
order by ts desc
Subscribe to:
Posts (Atom)