MS-SQL Server Firewall einrichten

netsh firewall set portopening protocol = TCP port = 1433 name = SQLPort mode = ENABLE scope = SUBNET profile = CURRENT

netsh advfirewall firewall add rule name = SQLPort dir = in protocol = tcp action = allow localport = 1433 remoteip = localsubnet profile = DOMAIN

New-NetFirewallRule -DisplayName "SQLServer default instance" -Direction Inbound -LocalPort 1433 -Protocol TCP -Action Allow
New-NetFirewallRule -DisplayName "SQLServer Browser service" -Direction Inbound -LocalPort 1434 -Protocol UDP -Action Allow

Excel Komma zu Punkt Beispiel

Wer ein deutsches Excel, als Werkzeug z.B. zur Erzeugung von Befehlen benutzt, wird sicher schon mal über das Problem von Komma statt Punkt gestolpert sein. Eine einfache und kurze Lösung bietet hier der Excel-Befehl WECHSELN an.

="update TABELLE set Feld1="& WECHSELN(F2;",";".") &", Feld2="& WECHSELN(F2*2;",";".") &" where Feld3='"&A2&"';"

ssh Zugang ohne Passwort

erster Schritt Schlüssel erzeugen

$ ssh-keygen -t rsa

zweiter Schritt Schlüssel auf Zielcomputer kopieren

$ ssh-copy-id -i ~/.ssh/id_rsa.pub user@remote-system

oder kopieren mit geräderten Port

$ ssh-copy-id -i ~/.ssh/id_rsa.pub “-p port user@remote-system”

oder so kopieren

$ cat ~/.ssh/*.pub | ssh user@remote-system ‘umask 077; cat >>.ssh/authorized_keys’

vi – die wichtigsten Befehle

Auf jeden Linux, BSD,… OSX-System ist der Texteditor vi oder eines seiner Nachkommen installiert. Für die Bearbeitung von Texten oder Konfigurationsdateien ist er ein sehr hilfreiches und schnelles Werkzeug. Nur leider vergisst man selten benutze Befehlte nach einiger Zeit wieder. Aus diesem Grund diese kleine Tabelle zum Nachschauen.

Einfügen an der Stelle des Cursors i
Einfügen nach dem nächsten Zeichen a
Löschen einer Zeile dd
Löschen eines Wortes dw
Löschen von der aktuellen Position bis zum Ende der Datei dG
Löschen von der aktuellen Position bis zum Angang der Datei d1G
Ein Zeichen löschen x
Überschreiben R
nächstes Wort überschreiben cw
Blockweise Markieren v
Spaltenweise Markieren strg-v
Block als Datei speichern :w new.txt
markierten Block löschen d
markierten Block (inkl. des Zeilenanfangs und Zeilenendes) D
Suchen nach muster /muster
Zum nächsten Muster n
Zum vorherigen Muster N
Suchen und Ersetzen :%s/muster/ersatz/gc
Neues Fenster Strg-w n
Zwischen den Fenstern hin und herwechseln Strg-w Pfeil hoch oder Strg-w Pfeil+runter
Zur Zeile x Springen (wobei x die Zeilennummer ist) xG
Zum Anfang der Datei 1G
Zum Ende der Datei GG
Markierung im Text setzen (wobei das a der Name der Markierung ist) ma
Zur Markierung springen (‘ ist rechts neben dem ä und a ist der Name der +Markierung) a
Letzte Aktion wiederholen .
Letzte Aktion rückgängig machen u
Hilfe :help

options for regular expressions

The following should be escaped if you are trying to match that character

\ ^ . $ | ( ) [ ]
* + ? { } ,

Special Character Definitions

\ Quote the next metacharacter
^ Match the beginning of the line
. Match any character (except newline)
$ Match the end of the line (or before newline at the end)
| Alternation
() Grouping
[] Character class
* Match 0 or more times
+ Match 1 or more times
? Match 1 or 0 times
{n} Match exactly n times
{n,} Match at least n times
{n,m} Match at least n but not more than m times

More Special Character Stuff

\t tab (HT, TAB)
\n newline (LF, NL)
\r return (CR)
\f form feed (FF)
\a alarm (bell) (BEL)
\e escape (think troff) (ESC)
\033 octal char (think of a PDP-11)
\x1B hex char
\c[ control char
\l lowercase next char (think vi)
\u uppercase next char (think vi)
\L lowercase till \E (think vi)
\U uppercase till \E (think vi)
\E end case modification (think vi)
\Q quote (disable) pattern metacharacters till \E

Even More Special Characters

\w Match a "word" character (alphanumeric plus "_")
\W Match a non-word character
\s Match a whitespace character
\S Match a non-whitespace character
\d Match a digit character
\D Match a non-digit character
\b Match a word boundary
\B Match a non-(word boundary)
\A Match only at beginning of string
\Z Match only at end of string, or before newline at the end
\z Match only at end of string
\G Match only where previous m//g left off (works only with /g)