Blog
Entdecken Sie unsere neuesten Beiträge

Ein Logging "Framework" für MSSQL
Eine umfassende Protokollierungslösung für SQL Server Stored Procedures, die strukturiertes Logging mit verschiedenen Schwerelevels, a...
.NET 9.0 - .NET Maui von Frame zu Border
Seit .NET 9 warnt der Compiler "Frame" ist veraltet: "Frame is obsolete as of .NET 9. Please use Border instead.".
nun gut leider geht ...
As a little finger exercise, I thought that a Visual Studio extension that explains the code would be good - thanks to OpenAI, that shouldn't be a...
MSSQL Script: Move all LOG files in a DB
-- First, create a temporary table to store the file move operations
CREATE TABLE #LogFileChanges (
DatabaseName sysname,
LogicalFile...
MSSQL Script: Alle LOG Files in einer DB verschieben
-- First, create a temporary table to store the file move operations
CREATE TABLE #LogFileChanges (
DatabaseName sysname,
...
Code compilation: How C# code magically becomes an EXE!
The question is how can I compile C# code on ‘the fly’ in .NET 9.0
As a demo, we will make a small programme that compiles any file wit...
Code-Compilation: Wie C# Code magisch zur EXE wird!
Die Fragestellung ist wie kann ich on "the fly" c# Code kompilieren in .NET 9.0
Als Demo machen wir ein kleines Programm, das eine beli...
MSSQL Schema umbenennen
Das ist leider so leicht nicht möglich. Aber es gibt einen Weg.
Zuerst das neue Schema erstellen:
create schema {newschema...
String in allen Files ersetzen mit POWERSHELL.
Get-ChildItem -Path "C:\path\to\your\directory" -Recurse -File |
ForEach-Object {
(Get-Content $_.FullName) -replace "your_...
Seite 1 von 3