Skip to content
Menu
e-lo [IT Engineer life]
  • Home
    • Note
  • Database
    • T-SQL
    • SQL Server quick
    • SQL server docs
    • MySql quick sheet
    • Postgre
    • InfluxDB
  • Programming
    • MS Azure Powershell
    • MS Azure Command-Line Interface (CLI) doc
    • Python Docs
    • Python Logging
    • Python-cheat-sheet
    • Git-guide
  • Azure
    • MS Windows virtual machines in Azure
    • MS ARM Docs
    • MS ARM Template Docs
    • MS ARM Functions
    • MS Bicep+ARM
    • MS ARM Tutorial
    • MS Deployment scripts (intern/extern)
    • MS Virtual Network
  • Az-nutshell
    • ms-technology-choices-compute-decision-tree
    • ms-data-store-decision-tree
    • ms-data-explorer
    • ms-storage-explorer
    • ms-azure-sql
    • ms-common-data-services
    • ms-azure-mysql-daas
    • ms-sla
    • az paas
    • az glossary-quicksheet
    • az-test-vm-script-quickguide
  • Linux
    • Top CMD’s
    • Useful CMD Linux
    • ss64 Linux
    • Ubuntu
    • 30 things Ubuntu 18.04
    • Bootable Ubuntu USB
    • LinuxFilesystemTreeOverview
  • Sys Admin
    • System Administrator
    • Sys News
  • Zen
    • Not thinking about anything is Zen
e-lo [IT Engineer life]

Author: espenk

Administration 103

Posted on August 31, 2020October 5, 2020 by espenk

Resource manger (RM) Infrastructure: VM’s, storage acc., vnet, web api, db etc. Deploy, monitor and manage all as a group with Azure Resource Manager Update, deploy, delete all with one operation Template for deploy for several environments, test, qa, prod RM has security, tagging, auditing Terminology Resource, item, vm, storage acc, db Resource group, container…

+

Governance and Compliance 102

Posted on August 24, 2020October 5, 2020 by espenk

Region is an area, geographical containing on or more datacenters. Azure subscription, Logical unit of services linked to account, billing is by subscription, organize access to services. Azure accounts, account is identity in AD. Types of account, enterprise, resellers, partners, personal. Free, wont be charged before you upgrade. Cost Management Pay for what you use,…

+

AD 101

Posted on August 23, 2020January 4, 2021 by espenk

AD Concepts Identity, can be user, app, servers that need auth through cert or keys Account, an identity that has some data associated Azure AD Account, identity created through Azure AD Azure subscription, pays for cloud services Azure tenant, dedicated and trusted instance of Azure AD, automatically made when signs up for MS cloud subscription…

+

OD20761C – Querying Data with Transact-SQL

Posted on May 25, 2020August 3, 2020 by espenk

Database diagram used for some learning (Bikestore) The rest is here: https://github.com/spawnmarvel/t-sql https://github.com/spawnmarvel/t-sql In MSSM, on every object there it a property options, if you do some changes, you can press the script before the change is applied to get the SQL used. Run just portions of the query, mark the section and execute: docs…

+

Git pull request

Posted on May 22, 2020May 22, 2020 by espenk

https://opensource.com/article/19/7/create-pull-request-github Account donaldtest fork the repos from spawnmarvel: https://github.com/donaldtest/powershellcode git clone https://github.com/request-user/demo cd foldergit checkout -b new_branch git remote add upstream https://github.com/fork-user/demo Now you can make changes to the code. Once you push the changes to your repo, the Compare & pull request button will appear in GitHub. Click Compare & pull request Open a…

+

SS64 cmd/ ps reference

Posted on May 16, 2020May 20, 2020 by espenk

https://ss64.com/ CMD ARP – Address Resolution Protocol. View the contents of the local ARP cache table arp -a TRACERTTrace Route – Find the IP address of any remote host. TRACERT is useful for troubleshooting large networks where several paths can be taken to arrive at the same point, or where many intermediate systems (routers or…

+

AZ-104-MS Azure Administrator 101 quick ref

Posted on May 13, 2020May 6, 2021 by espenk

Ava Down pr year Month Week 90% 1-9 36.5 d 72 h 16.8 h 99% 2-9 3.65 d 7.2 h 1.68 h 99.9% 3-9 8.76 h 43.2 m 10.1 m 99.99% 4-9 52.56 m 4.32 m 1.01 m 99.999% 5-9 5.26 m 25.9 s 6.05 s 99.9999% 6-9 31.5 s 2.5 s 0.6 s Inbound…

+

SQL Server Data Manipulation

Posted on April 1, 2020April 29, 2020 by espenk

Version used here SQL Server Management Studio 15.0.18206.04 The following illustrates the BikeStores database diagram: 5 Load Sample Database After that data is loaded, you can make your own diagram, navigate like this: Go to Sql Server Management Studio >Object Explorer >Databases >Choose and expand your Database.Under your database right click on “Database Diagrams” and…

+

MS SQL Server 2016 Express with SSMS

Posted on February 27, 2020October 7, 2020 by espenk

Download MS SQL Server 2016 Express: https://www.microsoft.com/en-us/download/confirmation.aspx?id=56840 Install also the SSMS tool from the install, or download it from MS. https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver15 SQL Server Management Studio (SSMS) is an integrated environment for managing any SQL infrastructure, from SQL Server to Azure SQL Database. SSMS provides tools to configure, monitor, and administer instances of SQL Server and…

+

Azure SDK Pyhon

Posted on February 16, 2020February 16, 2020 by espenk

https://azure.github.io/azure-sdk/python_introduction.html Python Guidelines: Introduction: Design principlesIdiomaticConsistentApproachableDiagnosableDependablePython Design Principles:–PEP 20 — The Zen of Python, import this https://www.python.org/dev/peps/pep-0020/ General Guidelines: https://azure.github.io/azure-sdk/general_introduction.html Gitub: https://github.com/azure/azure-sdk-for-python Supported python versions:Code style: https://www.python.org/dev/peps/pep-0008/ Naming conventions: service_client = ServiceClient() service_client.list_things() def do_something(): class ThisIsCorrect(object): pass MAX_SIZE = 4711 database_module.py Method signatures: DO NOT use, static, do not use get set, use properties…

+
  • Previous
  • 1
  • …
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • …
  • 15
  • Next

RSS Azure

  • Scale your cloud-native apps and accelerate app modernization with Azure, the best cloud for your apps May 24, 2022

RSS RabbitMQ

  • RabbitMQ 3.8.15 release

RSS Python

  • PEP 691: JSON-based Simple API for Python Package Indexes May 4, 2022

Tags

5 min (26) Ansible (1) ARM (10) azure (40) cmd (3) Django (4) Docker (1) e-lo (2) Flask (2) Github (9) Grafana (2) Information (7) Information Retrieval (13) JAVA (1) kivy (2) Kotlin (6) linux (15) mobile (2) Natural Language Prossesing (NLP) (2) Net.Core (1) Networking and Security (6) OPC (2) PEP8 (1) Philosophy (3) Python (47) Python Networking and Security (5) Reason (2) RMQ (3) Solr (11) Sql (10) Uncategorized (2) VSC (1) Warframe (2) WMVARE (4) Zabbix (7)

Recent Posts

  • 5 min Logic App Storage Table
  • 5 min Logic App PSQL
  • 5 min Logic App
  • 5 MIN Azure Data Explorer
  • TODO Build a Hash Table in Python With TDD Real Python

Archives

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Photo by Markus Spiske from Pexels "Matrix"

©2022 e-lo [IT Engineer life] | Powered by WordPress & Superb Themes