PowerShell SQL Tutorial Part 1 : Fetching Data

Опубликовано: 13 Декабрь 2021
на канале: JackedProgrammer
26,471
322

Learn how to create a database and then fetch the data from it using PowerShell. In this video we learn how to fetch data from a SQL Server with PowerShell, I also go over the basics of creating a database in SSMS and a simple table. In this series we will see how to also insert, update and delete from the database, iterate through the results of a fetch and how to create a SQL Module to allow us to log our scripts into a database.

How to install SQL Express and SSMS :    • How to install SQL Server 2019 Express and...  

create table Log(
id bigint identity,
occuredAt datetime default CURRENT_TIMESTAMP,
appName nvarchar(100),
computerName nvarchar(255),
details text,
);

insert into Log (appName,computerName,details) values ('Test','TestComputer','TestDetails')

Tags:
Sql server, powershell, fetching data, powershell sql, powershell data science, automation, jacked programmer, scripting, coding, programming


На этой странице сайта вы можете посмотреть видео онлайн PowerShell SQL Tutorial Part 1 : Fetching Data длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь JackedProgrammer 13 Декабрь 2021, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 26,471 раз и оно понравилось 322 зрителям. Приятного просмотра!