Textbox Properties
Font
Color
Expression Example:
=iif(Sum(Fields!Profit.Value)>0, "Green","Red")
meine Sys/Db admin & Developper Notitzen - wer Rechtschreibfehler findet darf sie behalten ... my Sys/Db Admin and developper notes - I don't care about typos
Textbox Properties
Font
Color
Expression Example:
=iif(Sum(Fields!Profit.Value)>0, "Green","Red")
scheinbar gibt es ssrs 2022 nur mehr extra, nicht so wie früher gemeinsam mit sql express.
ssrs 2022 kann nicht mehr auf einem domain controller installiert werden
Express version von ssrs2022 braucht eine lokale express sql server db als report db
SSRS Reporting Services Configuration Tool standard InstallationsPfad:
C:\Program Files (x86)\Microsoft SQL Server\130\Tools\Binn
RSConfigTool.exe
asus vivobook 17 r702uv-GC279T
Öffnen: alle schrauben abschrauben hnten, eine ist unter einem schwarzen Gummischeibchen versteckt, dann mit schaubenzieher rand anheben um plastick einrastungen zu öffnen.
1) Slot for second HDD - Platz für 2. HDD
2) Akku
3,4) Speaker - Lautsprecher
5) WLAN Modul
6) Motherboard, on other side (behind 6) is internal SSD - auf der anderen Seite unterhalb der Ziffer 6 ist die eingebaute SSD
Um von Windows ins Bios bzw. Boot Menü zu kommen, Shift Taste halten und dann neu starten auswählen
ssh clonen:
1) ssh public key des client zu github hinzufügen:
in ~/.ssh ist der public key id_rsa.pub, kopieren: cat ~/.ssh/id_rsa.pub
in github rechts oben auf das user logo clicken, unten settings
rechts 2.Abschnitt Access, SSH and GPG keys
new SSH key, dort einfügen
2) git clone ....
dann clonen, - repro in github auswählen, dann CODE menü, SSH kopieren und nach git clone einfügen z.b:
git clone git@github.com:mike...../raspi.git
power shell starten
wsl installieren:
wsl --install
wsl version abrufen
wsl --version
verfügbare linux distributionen auflisten
wsl --list
starten der default installation
wsl --d
starten iener bestimmten distribution
wsl --d Ubuntu
.net framework auf rasperry installieren
https://learn.microsoft.com/de-de/dotnet/iot/deployment
neues console projekt:
dotnet new console
starten: dotnet run
Visual Studio Code installieren:
sudo apt install code
rasperry:
sudo apt install mariadb-server
sudo mysql_secure_installation
sudo nano /etc/mysql/mariadb.conf.d/50-server.cnf
Port unkommentieren, d.h. # entfernen
GRANT ALL PRIVILEGES ON neueDatenbank . * TO 'neuerUser'@'localhost';
GRANT ALL PRIVILEGES ON *. * TO 'neuerUser'@'localhost';