Category Archives: Database

SQL server, MySQL, PostgreSQL, MariaDB, MongoDB, SQLite

How To Create A SQL Stored Procedure With An Input Parameter

Learning to create and manage stored procedures in SQL is another useful SQL databases skill for the DBA and developer. The Procedures allow you to create repeatable code that can be executed using just a database single call. We can also design the procedure to handle passing parameters into it…. Read more »

Use Powershell To Get SQL Database Versions Locally or Remote

Collecting version information for your environment is a never ending task but Powershell can be used to make things easier. Each SQL server instance can be different and a single server can have multiple SQL instances with different versions. In SQL server we can use SSMS to run the following… Read more »