Monday, December 07, 2020

get .PublishSettings file and import into visual studio to deploy your web app to azure

 1) öffne die Übersicht des  web service im azure portal

2) in der obersten Zeile neben NeuStarten, Löschen,Aktualisieren auf "Veröffentlichungsprofil abrufen" drücken => download

3) in visualstudio auf Projekt/Veröffentlichen gehen, Neu, links unten Profil importieren

azure web (app) service protocol

 

  1. go to your service then "überwachungen/App-Service Protokolle"
  2. switch on the protocolls you would like to be saved
  3. go to "Protokollstream" and connect to "Anwendungsprotokolle" (applicationProtocolls"

Sunday, December 06, 2020

sql server suche nach richtig formatierten email adressen / search for well spelled email adresses in sql server

 select top 100 Name,Emailadresse from tAdressen where Emailadresse not like '%[A-Z0-9][@][A-Z0-9]%[.][A-Z0-9]%'